{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }}
{{ html()->label('Task Category')->class('form-label') }} {{ html()->select('task_category_id', $categoryList)->class('form-control')->placeholder('Select Task Category')->required() }}
{{ html()->label('Project')->class('form-label') }} {{ html()->select('project_id', $projectList)->class('form-control')->placeholder('Select Project')->required() }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('desc')->class('form-control ckeditor-classic')->placeholder('..') }}
Cancel
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control')->required() }}
Team Members
{{ html()->multiselect('assigned_id[]', $memberList)->class('form-control select2')->value($task->assigned_id ?? null)->attributes(['multiple', 'id' => 'assigned_id'])->required() }}
Date
{{ html()->label('Priority')->class('form-label') }} {{ html()->select('priority', $priority)->class('form-control')->required() }}
{{ html()->label('Start Date')->class('form-label') }} {{ html()->date('start_date')->class('form-control')->placeholder('Choose Start Date') }}
{{ html()->label('Due Date')->class('form-label') }} {{ html()->date('due_date')->class('form-control')->placeholder('Choose Due Date') }}