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

{{ Form::open(['id'=>'addNewForm']) }}
{{ 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 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 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 consultation-duration-minutes form-control-solid','required', 'min' => '0', 'max' => '720']) }}
{{ Form::label('patient_id', __('messages.blood_issue.patient_name').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('patient_id', $patients, null, ['class' => 'form-select form-select-solid patient-name', 'placeholder' => 'Select Patient Name', 'id' => 'patientName', 'required', 'data-control'=>'select2']) }}
{{ Form::label('doctor_id', __('messages.blood_issue.doctor_name').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('doctor_id', $doctors, null, ['class' => 'form-select form-select-solid doctor-name', 'placeholder' => 'Select Doctor Name', 'required','data-control'=>'select2']) }}
{{ Form::label('type', __('messages.live_consultation.type').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('type', $type, null, ['class' => 'form-select form-select-solid select2Selector consultation-type', 'placeholder' => 'Select Type', 'disabled', 'required', 'data-control'=>'select2']) }}
{{ Form::label('type_number', __('messages.live_consultation.type_number').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('type_number', [null], null, ['class' => 'form-select form-select-solid select2Selector consultation-type-number', 'placeholder' => 'Select Type', 'disabled', 'required', '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']) }}   {{ Form::radio('host_video', \App\Models\LiveConsultation::HOST_DISABLED, true, ['class' => 'form-check-input']) }}
{{ 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']) }}   {{ Form::radio('participant_video', \App\Models\LiveConsultation::CLIENT_DISABLED, true, ['class' => 'form-check-input']) }}
{{ Form::label('description', __('messages.testimonial.description').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', '', ['class' => 'form-control description form-control-solid', 'rows' => 3]) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary me-3','id' => 'btnSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}