{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }} {{ html()->div('Please enter title')->class('invalid-feedback') }}
{{ html()->label('Start Date')->class('form-label') }} {{ html()->date('start_date')->class('form-control')->placeholder('Choose Start Date')->required() }} {{ html()->div('Please choose start date')->class('invalid-feedback') }}
{{ html()->label('Due Date')->class('form-label') }} {{ html()->date('due_date')->class('form-control')->placeholder('Choose Due Date') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('desc')->class('form-control ckeditor-classic')->placeholder('..') }}
{{ html()->hidden('parent_id', $task->id) }} Cancel