{{ __('messages.live_consultation.edit_live_meeting') }}

{{ Form::open(['id'=>'editForm']) }}
{{ Form::hidden('live_meeting_id',null,['id'=>'liveMeetingId']) }}
{{ Form::label('consultation_title', __('messages.live_consultation.consultation_title').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('consultation_title', '', ['class' => 'form-control edit-consultation-title form-control-solid','required']) }}
{{ Form::label('consultation_date', __('messages.live_consultation.consultation_date').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('consultation_date', '', ['class' => 'form-control edit-consultation-date form-control-solid','required', 'autocomplete' => 'off']) }}
{{ Form::label('consultation_duration_minutes', __('messages.live_consultation.consultation_duration_minutes').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::number('consultation_duration_minutes', '', ['class' => 'form-control edit-consultation-duration-minutes form-control-solid','required', 'min' => '0', 'max' => '720']) }}
{{ Form::label('staff_list', __('messages.live_consultation.staff_list').':', ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('staff_list[]', $users, getLoggedInUserId(), ['class' => 'form-select form-select-solid editUserId', 'required', 'multiple' => true, 'data-control'=>'select2']) }}
{{ Form::label('host_video',__('messages.live_consultation.host_video').':', ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }}
   {{ Form::radio('host_video', \App\Models\LiveConsultation::HOST_ENABLE, false, ['class' => 'form-check-input host-enable']) }}   {{ Form::radio('host_video', \App\Models\LiveConsultation::HOST_DISABLED, true, ['class' => 'form-check-input host-disabled']) }}
{{ Form::label('participant_video',__('messages.live_consultation.client_video').':', ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }}
   {{ Form::radio('participant_video', \App\Models\LiveConsultation::CLIENT_ENABLE, false, ['class' => 'form-check-input client-enable']) }}   {{ Form::radio('participant_video', \App\Models\LiveConsultation::CLIENT_DISABLED, true, ['class' => 'form-check-input client-disabled']) }}
{{ Form::label('description', __('messages.testimonial.description').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', '', ['class' => 'form-control edit-description form-control-solid', 'rows' => 3]) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary me-3','id' => 'btnEditSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}