{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Meeting Title')->required() }}
{{ html()->div('Please enter title')->class('invalid-feedback') }}
{{ html()->label('Location')->class('form-label') }}
{{ html()->text('location')->class('form-control')->placeholder('Meeting Location') }}
{{ html()->label('Date')->class('form-label') }}
{{ html()->text('date')->class('form-control flatpickr-date')->placeholder('Start Date')->required() }}
{{ html()->div('Choose Start Date')->class('invalid-feedback') }}
{{ html()->label('Start Time')->class('form-label') }}
{{ html()->time('start_time')->class('form-control')->placeholder('Event Start Time') }}
{{ html()->label('End Time')->class('form-label') }}
{{ html()->time('end_time')->class('form-control')->placeholder('Event End Time') }}
{{ html()->label('Meeting with: ')->class('form-label') }}
{{ html()->radio('meeting_with', false, 'client')->class('form-check-input meeting-with') }}
{{ html()->label('Client')->class('form-check-label me-1')->for('meeting_with_client') }}
{{ html()->radio('meeting_with', false, 'member')->class('form-check-input meeting-with') }}
{{ html()->label('Office Members')->class('form-check-label me-1')->for('meeting_with_member') }}
{{ html()->label('Client')->class('form-label') }}
{{ html()->select('client_id', $clientList)->class('form-select select2') }}
{{ html()->label('Members')->class('form-label') }}
{{ html()->multiselect('members[]', [])->class('form-control select2')->attributes(['multiple', 'id' => 'members']) }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
@push('js')
@endpush