@include('timesheet::public.task.partial.header')
@include('timesheet::public.task.partial.aside')
{{$task->title}}

{!! $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'))!!}
{!! $task->files('images', 10) ->mime(config('filer.image_extensions')) ->url($task->getUploadUrl('images')) ->dropzone()!!}
{!! $task->files('images') ->editor()!!}
{!! $task->files('files') ->url($task->getUploadUrl('files')) ->mime(config('filer.allowed_extensions')) ->files()!!}
{!! $task->files('files') ->editor()!!}
{!! 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::text('start_time') -> placeholder(trans('timesheet::task.placeholder.start_time')) -> addClass('pickdatetime') ->raw()!!}
{!! Form::text('time_taken') -> placeholder(trans('timesheet::task.placeholder.time_taken')) -> addClass('pickdatetime') ->raw()!!}
{!! Form::text('duration') -> placeholder(trans('timesheet::task.placeholder.duration')) -> raw()!!}
{!! Form::select('status') -> options(trans('timesheet::task.options.status')) -> label(trans('timesheet::task.label.status')) -> placeholder(trans('timesheet::task.placeholder.status'))!!}