{{ html()->label('Event Type')->class('form-label') }} {{ html()->select('type', \Modules\Admin\Models\Event::MEETING_TYPE)->class('form-select select2')->placeholder('Event Type') }}
{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Event Title') }}
{{ html()->label('Location')->class('form-label') }} {{ html()->text('location')->class('form-control')->placeholder('Event Location') }}
{{ html()->label('Start Date')->class('form-label') }}
{{ html()->text('start_date')->class('form-control flatpickr-input active')->id('event-start-date')->placeholder('Event Start Date')->attributes([ 'data-provider' => 'flatpickr', 'data-date-format' => 'Y-m-d', 'data-enable-time' => '', ]) }}
{{ html()->label('End Date')->class('form-label') }}
{{ html()->text('end_date')->class('form-control flatpickr-input active')->id('event-end-date')->placeholder('Event End Date')->attributes([ 'data-provider' => 'flatpickr', 'data-date-format' => 'Y-m-d', 'data-enable-time' => '', ]) }} {{-- {{ html()->text('end_date')->class('form-control flatpickr-date')->id('event-end-date')->placeholder('Event End Date') }} --}}
{{--
{{ html()->label('Start Time')->class('form-label') }}
{{ html()->text('start_time')->class('form-control')->placeholder('Event Start Time')->attributes(['data-provider' => 'timepickr', 'data-time-basic' => 'true']) }}
{{ html()->label('End Time')->class('form-label') }}
{{ html()->text('end_time')->class('form-control')->placeholder('Event End Time')->attributes(['data-provider' => 'timepickr', 'data-time-basic' => 'true']) }}
--}}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->placeholder('Event Description')->attributes(['rows' => 3]) }}
@push('js') @endpush