@include('layouts.flash.alert')
{{ Form::open(array('route' => ['timesheets.labour.store', $project->id],'method' => 'post', 'id' => 'form-timesheet-approved')) }}
{{ Form::label('area', 'Area') }}
{{ Form::select('area', $areas, null, [
'class' => "form-control select2-input areas",
'id' => "areas",
'data-live-search'=>'true',
'onchange'=> 'getLevels(this.value)'
]) }}
{{ Form::label('level', 'Level') }}
{{ Form::select('level', [''=>'Select level'], old('level'), [
'class' => "form-control select2-input levels",
'id' => "levels",
'data-live-search'=>'true',
'onchange'=> 'getSubCodes(this.value)'
]) }}
{{ Form::label('sub_code', 'Sub code') }}
{{ Form::select('sub_code', [''=>'Select sub code'], null, [
'class' => "form-control select2-input sub_code",
'id' => "sub_code",
'data-live-search'=>'true',
'onchange'=> 'prepareTimesheetForm(this.value)'
]) }}
{{ Form::close() }}
@stop
@push('scripts')
@endpush