@extends('layouts.organization') @section('breadcrumb')
{{__('My Courses')}}
{{__('Dashboard')}}
{{ __('Live Class Course List') }}
{{ __('Create Live') }}
@endsection @section('content')
{{ __('Create Live Class') }}
@csrf
{{ __('Live Class Topic') }}
@if ($errors->has('class_topic'))
{{ $errors->first('class_topic') }}
@endif
{{ __('Live Class Date') }}
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
{{ __('Time Duration (Write minutes)') }}
@if ($errors->has('duration'))
{{ $errors->first('duration') }}
@endif
{{ __('Meeting Host Name') }}
!
{{ __('Select Option') }}
@if(zoom_status() == 1)
Zoom
@endif @if(get_option('bbb_status') == 1)
BigBlueButton
@endif @if(get_option('jitsi_status') == 1)
Jitsi
@endif @if(get_option('gmeet_status') == 1 && $gmeet)
Google Meet
@endif @if(get_option('agora_status') == 1)
Agora In App Live
@endif
@if ($errors->has('meeting_host_name'))
{{ $errors->first('meeting_host_name') }}
@endif
@if(zoom_status() == 1)
{{ __('Zoom Live Class Link') }}
@if ($errors->has('start_url'))
{{ $errors->first('start_url') }}
@endif
{{ __('Create Live Link') }}
@endif @if(get_option('jitsi_status') == 1)
{{ __('Jitsi Meeting ID/Room') }}
@if ($errors->has('jitsi_meeting_id'))
{{ $errors->first('jitsi_meeting_id') }}
@endif
@endif @if(get_option('bbb_status') == 1)
{{ __('Moderator Password') }}
@if ($errors->has('moderator_pw'))
{{ $errors->first('moderator_pw') }}
@endif
{{ __('Attendee Password') }}
@if ($errors->has('attendee_pw'))
{{ $errors->first('attendee_pw') }}
@endif
@endif
{{ __('Back') }}
{{ __('Create Meeting') }}
@endsection @push('script') @endpush