{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Holiday Title') }}
{{ html()->label('Date')->class('form-label') }}
{{ html()->text('date')->class('form-control flatpickr flatpickr-input')->id('event-start-date')->placeholder('Select Holiday Date') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->placeholder('Holiday Description')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->button($editable ? 'Update' : 'Add Holiday', 'submit')->class('btn btn-success') }}