{!! Form::select('task_id')
-> options(trans('timesheet::timesheet.options.task_id'))
-> label(trans('timesheet::timesheet.label.task_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.task_id'))!!}
{!! Form::select('project_id')
-> options(trans('timesheet::timesheet.options.project_id'))
-> label(trans('timesheet::timesheet.label.project_id'))
-> placeholder(trans('timesheet::timesheet.placeholder.project_id'))!!}
{!! Form::numeric('percentage')
-> label(trans('timesheet::timesheet.label.percentage'))
-> placeholder(trans('timesheet::timesheet.placeholder.percentage'))!!}
{!! Form::text('description')
-> label(trans('timesheet::timesheet.label.description'))
-> placeholder(trans('timesheet::timesheet.placeholder.description'))!!}