{!! Form::open(['url' => action('\Modules\Essentials\Http\Controllers\ToDoController@store'), 'id' => 'task_form', 'method' => 'post']) !!}
{!! Form::label('task', __('essentials::lang.task') . ":*")!!}
{!! Form::text('task', null, ['class' => 'form-control', 'required']) !!}
@if(!empty($users))
@can('essentials.assign_todos')
@endcan
@endif
{!! Form::label('priority', __('essentials::lang.priority') . ':') !!}
{!! Form::select('priority', $priorities, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'style' => 'width: 100%;']); !!}
{!! Form::label('status', __('sale.status') . ':') !!}
{!! Form::select('status', $task_statuses, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'style' => 'width: 100%;']); !!}
{!! Form::label('to_do_description', __('lang_v1.description') . ':') !!}
{!! Form::textarea('description', null, ['id' => 'to_do_description']); !!}
{!! Form::close() !!}