@extends('user::layouts.master') @section('content')

Manage Timesheet

@include('layouts.flash.alert')
{{ Form::open(['route' => ['timesheets.staff.store', $project->id], 'method' => 'post', 'enctype'=> 'multipart/form-data']) }}

Create Timesheet

{{ 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