{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }}
{{ html()->label('Date')->class('form-label') }}
{{ html()->text('date')->class('form-control flatpickr-date') ->attributes([
'data-provider' => 'flatpickr',
'data-date-format' => 'Y-m-d',
])->placeholder('Choose Date')->required() }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic1') }}