{{ 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') }}
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control select2')->placeholder('Select Status') }}