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

{{ Form::open(['id'=>'addLiveMeetingForm']) }}
{{ Form::label('consultation_title', __('messages.live_consultation.consultation_title').(':'), ['class' => 'form-label']) }} {{ Form::text('consultation_title', '', ['class' => 'form-control consultation-title','required']) }}
{{ Form::label('consultation_date', __('messages.live_consultation.consultation_date').(':'), ['class' => 'form-label']) }} {{ Form::text('consultation_date', '', ['class' => (getLoggedInUser()->thememode ? 'bg-light consultation-date form-control' : 'bg-white consultation-date form-control'),'required', 'autocomplete' => 'off']) }}
{{ Form::label('consultation_duration_minutes', __('messages.live_consultation.consultation_duration_minutes').(':'), ['class' => 'form-label']) }} {{ Form::number('consultation_duration_minutes', '', ['class' => 'form-control consultation-duration-minutes','required', 'min' => '0', 'max' => '720']) }}
{{ Form::label('staff_list', __('messages.live_consultation.staff_list').':', ['class' => 'form-label']) }} {{ Form::select('staff_list[]', $users, getLoggedInUserId(), ['class' => 'form-select', 'required', 'id'=>'meetingUserId', 'multiple' => true, 'data-control'=>'select2']) }}
{{ Form::label('host_video',__('messages.live_consultation.host_video').':', ['class' => 'form-label']) }}
{{ Form::radio('host_video', \App\Models\LiveConsultation::HOST_ENABLE, false, ['class' => 'form-check-input','id'=>'meetingHostEnable']) }}
  {{ Form::radio('host_video', \App\Models\LiveConsultation::HOST_DISABLED, true, ['class' => 'form-check-input','id'=>'meetingHostDisable']) }}
{{ Form::label('participant_video',__('messages.live_consultation.client_video').':', ['class' => 'form-label']) }}
{{ Form::radio('participant_video', \App\Models\LiveConsultation::CLIENT_ENABLE, false, ['class' => 'form-check-input','id'=>'meetingParticipantEnable']) }}  
  {{ Form::radio('participant_video', \App\Models\LiveConsultation::CLIENT_DISABLED, true, ['class' => 'form-check-input','id'=>'meetingParticipantDisable']) }}
{{ Form::label('description', __('messages.testimonial.description').(':'), ['class' => 'form-label']) }} {{ Form::textarea('description', '', ['class' => 'form-control description', 'rows' => 3]) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary m-0','id' => 'meetingSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}