{!! Form::select('candidate_id')
-> options(trans('timesheet::timesheet.options.candidate_id'))
-> label(trans('timesheet::timesheet.label.candidate_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.candidate_id'))!!}
{!! Form::select('client_id')
-> options(trans('timesheet::timesheet.options.client_id'))
-> label(trans('timesheet::timesheet.label.client_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.client_id'))!!}
{!! Form::select('unit_id')
-> options(trans('timesheet::timesheet.options.unit_id'))
-> label(trans('timesheet::timesheet.label.unit_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.unit_id'))!!}
{!! Form::select('job_id')
-> options(trans('timesheet::timesheet.options.job_id'))
-> label(trans('timesheet::timesheet.label.job_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.job_id'))!!}
{!! Form::text('total_hours')
-> label(trans('timesheet::timesheet.label.total_hours'))
-> placeholder(trans('timesheet::timesheet.placeholder.total_hours'))!!}
{!! Form::text('total_cost')
-> label(trans('timesheet::timesheet.label.total_cost'))
-> placeholder(trans('timesheet::timesheet.placeholder.total_cost'))!!}
{!! Form::textarea ('details')
-> label(trans('timesheet::timesheet.label.details'))
-> placeholder(trans('timesheet::timesheet.placeholder.details'))!!}