{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Holiday Title')->required() }}
{{ html()->div('Please select Resigner')->class('invalid-feedback') }}
{{ html()->label('Start Date')->class('form-label') }}
{{ html()->text('start_date')->class('form-control flatpickr-date flatpickr-input')->id('event-start-date')->placeholder('Holiday Start Date')
->attributes([
'data-provider' => 'flatpickr',
'data-date-format' => 'Y-m-d',
])->required() }}
{{ html()->label('End Date')->class('form-label') }}
{{ html()->text('end_date')->class('form-control flatpickr-date flatpickr-input')->id('event-end-date')->placeholder('Holiday End Date')
->attributes([
'data-provider' => 'flatpickr',
'data-date-format' => 'Y-m-d',
])->required() }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control')->placeholder('Holiday Description')->attributes(['rows' => 3]) }}