{!! Form::text('title')
-> label(trans('timesheet::task.label.title'))
-> placeholder(trans('timesheet::task.placeholder.title'))!!}
{!! Form::select('priority')
-> options(trans('timesheet::task.options.priority'))
-> label(trans('timesheet::task.label.priority'))
-> placeholder(trans('timesheet::task.placeholder.priority'))!!}
{!! Form::select('colors')
-> options(trans('timesheet::task.options.colors'))
-> label(trans('timesheet::task.label.colors'))
-> placeholder(trans('timesheet::task.placeholder.colors'))!!}
{!! Form::numeric('order')
-> label(trans('timesheet::task.label.order'))
-> placeholder(trans('timesheet::task.placeholder.order'))!!}
{!! Form::numeric('weightage')
-> label(trans('timesheet::task.label.weightage'))
-> placeholder(trans('timesheet::task.placeholder.weightage'))!!}
{!! Form::numeric('tags')
-> label(trans('timesheet::task.label.tags'))
-> placeholder(trans('timesheet::task.placeholder.tags'))!!}
{!! Form::text('reference')
-> label(trans('timesheet::task.label.reference'))
-> placeholder(trans('timesheet::task.placeholder.reference'))!!}
{!! Form::text('documents')
-> label(trans('timesheet::task.label.documents'))
-> placeholder(trans('timesheet::task.placeholder.documents'))!!}
{!! Form::url('links')
-> label(trans('timesheet::task.label.links'))
-> placeholder(trans('timesheet::task.placeholder.links'))!!}
{!! Form::select('complexity')
-> options(trans('timesheet::task.options.complexity'))
-> label(trans('timesheet::task.label.complexity'))
-> placeholder(trans('timesheet::task.placeholder.complexity'))!!}
{!! Form::select('status')
-> options(trans('timesheet::task.options.status'))
-> label(trans('timesheet::task.label.status'))
-> placeholder(trans('timesheet::task.placeholder.status'))!!}