{{ html()->label('Meeting with')->class('form-label') }}
{{ html()->radio('meeting_with', false, 'client')->class('form-check-input meeting-with')->checked($editable && $meeting->meeting_with == 'client') }} {{ html()->label('Client')->class('form-check-label me-1') }}
{{ html()->radio('meeting_with', false, 'member')->class('form-check-input meeting-with')->checked($editable && $meeting->meeting_with == 'member') }} {{ html()->label('Office Members')->class('form-check-label me-1') }}
{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Meeting Title')->required() }} {{ html()->div('Please mention meeting title')->class('invalid-feedback') }}
{{ html()->label('Date')->class('form-label') }}
{{ html()->text('date')->class('form-control flatpickr-date')->required() }}
{{ html()->label('Client')->class('form-label') }} {{ html()->select('client_id', $clientList)->class('form-select select2')->placeholder('Select Client') }}
{{ html()->label('Members')->class('form-label') }} {{ html()->multiselect('members[]', $memberList)->class('form-control select2')->placeholder('Select Members')->value($task->members ?? null)->attributes(['multiple', 'id' => 'members']) }}
{{ 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('Location')->class('form-label') }} {{ html()->text('location')->class('form-control')->placeholder('Meeting Location')->required() }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control ckeditor-classic')->placeholder('Meeting Description') }}
@push('js') @endpush