{!! Form::label('lesson_id', trans('labels.backend.live_lesson_slots.fields.lesson'), ['class' => 'control-label']) !!}
{!! Form::select('lesson_id', $lessons, (request('lesson_id')) ? request('lesson_id') : old('lesson_id'), ['class' => 'form-control select2']) !!}
{!! Form::label('topic', trans('labels.backend.live_lesson_slots.fields.topic').'*', ['class' => 'control-label']) !!}
{!! Form::text('topic', old('topic'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.live_lesson_slots.fields.topic'), 'required' => true]) !!}
{!! Form::label('short_text', trans('labels.backend.live_lesson_slots.fields.short_text').'*', ['class' => 'control-label']) !!}
{!! Form::textarea('description', old('description'), ['class' => 'form-control ', 'placeholder' => trans('labels.backend.live_lesson_slots.short_description_placeholder'), 'required' => true]) !!}
{!! Form::label('start_at', trans('labels.backend.live_lesson_slots.fields.date_of_slot').'*', ['class' => 'control-label']) !!}
{!! Form::datetimeLocal('start_at', $liveLessonSlot->id?$liveLessonSlot->start_at->format('Y-m-d\TH:i'):old('start_at'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.live_lesson_slots.fields.date_of_slot'),'required' => true, 'min' => $liveLessonSlot->id ? $liveLessonSlot->start_at->format('Y-m-d\TH:i'): '']) !!}
{!! Form::label('duration', trans('labels.backend.live_lesson_slots.fields.duration').'*', ['class' => 'control-label']) !!}
{!! Form::number('duration', old('duration'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.live_lesson_slots.fields.duration'), 'required' => true, 'min' => 10]) !!}
{!! Form::label('password', trans('labels.backend.live_lesson_slots.fields.password').'*', ['class' => 'control-label']) !!}
{!! Form::text('password', old('password'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.live_lesson_slots.fields.password'), 'required' => true]) !!}
{!! Form::label('student_limit', trans('labels.backend.live_lesson_slots.fields.student_limit').'*', ['class' => 'control-label']) !!}
{!! Form::number('student_limit', old('student_limit'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.live_lesson_slots.fields.student_limit'), 'required' => true, 'min' => 1, 'max' => 20]) !!}
{!! Form::label('audio_option', trans('labels.backend.zoom_setting.fields.audio_option'), ['class' => 'control-label']) !!}
{!! Form::select('audio', ['both'=> trans('labels.backend.zoom_setting.audio_options.both'), 'telephony' => trans('labels.backend.zoom_setting.audio_options.telephony'), 'voip' => trans('labels.backend.zoom_setting.audio_options.voip')],null, ['class' => 'form-control']) !!}
{!! Form::label('audio_option', trans('labels.backend.zoom_setting.fields.meeting_join_approval'), ['class' => 'control-label']) !!}
{!! Form::select('approval_type', ['0'=> trans('labels.backend.zoom_setting.meeting_approval_options.automatically'), '1' => trans('labels.backend.zoom_setting.meeting_approval_options.manually'), '2' => trans('labels.backend.zoom_setting.meeting_approval_options.no_registration_required')],null, ['class' => 'form-control']) !!}
@push('after-scripts')
@endpush