{!! $task['id'] !!}
{!! $task['project_id'] !!}
{!! $task['column_id'] !!}
{!! $task['assigned_to'] !!}
{!! $task['created_by'] !!}
{!! $task['title'] !!}
{!! $task['priority'] !!}
{!! $task['colors'] !!}
{!! $task['order'] !!}
{!! $task['weightage'] !!}
{!! $task['tags'] !!}
{!! $task['reference'] !!}
{!! $task['documents'] !!}
{!! $task['screenshot'] !!}
{!! $task['files'] !!}
{!! $task['links'] !!}
{!! $task['complexity'] !!}
{!! $task['start_time'] !!}
{!! $task['time_taken'] !!}
{!! $task['duration'] !!}
{!! $task['status'] !!}
{!! $task['created_at'] !!}
{!! $task['deleted_at'] !!}
{!! $task['updated_at'] !!}
{!! 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'))!!}