@extends('layouts.app') @section('pageStyle') @endsection @section('content')

Edit Level 3 Type

Edit Level 3
{{ all_errors($errors) }} @include('layouts.flash') {{ Form::open(['url' => 'attribute/update-level/'.$level->id, 'method' => 'patch', 'class' => 'form-horizontal intersection_wrapper', 'id' => 'edit-form']) }}
{{ Form::label('name', 'Level Name', ['class' => 'col-lg-3 control-label text-left']) }}
{{ Form::text('name', $level->name,['required', 'class' => 'form-control']) }}
{{ Form::label('level', 'Choose HCM', ['class' => 'col-lg-3 control-label text-left']) }}
{{ Form::select('hcm_id', ['' => 'Select HCM']+$hcms, [$hcm_id], ['required'=> true, 'class' => 'form-control', 'id' => 'hcm_id']) }}
{{ Form::label('intersection_ids[]', 'Choose Intersection', ['class' => 'col-lg-3 control-label text-left']) }}
{{ Form::label('description', 'Description', ['class' => 'col-lg-3 control-label text-left']) }}
{{ Form::textarea('description',$level->description,['rows' => 5, 'class' => 'form-control']) }}
{{ Form::submit('Update Level', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}
@endsection @section('pageScript')