@extends('layouts.app') @section('content')

Edit Room: {{ $room->name }} @if($room->isBbbRoom()) BBB Room @endif

@csrf @method('PUT')
Basic Information
@error('name')
{{ $message }}
@enderror
Room type cannot be changed @error('type')
{{ $message }}
@enderror
Maximum number of participants
@error('capacity')
{{ $message }}
@enderror
@error('note')
{{ $message }}
@enderror
@if(!$room->isBbbRoom() && (auth()->user()->isAdmin() || auth()->user()->isLmsManager()))
BigBlueButton Video Conference Room
Convert this room to a video conference room with audio/video capabilities
@error('bbb_room_type')
{{ $message }}
@enderror
Maximum duration in minutes (15-480)
@error('bbb_duration')
{{ $message }}
@enderror
This message will be displayed when participants join
@error('bbb_welcome_message')
{{ $message }}
@enderror
Optional: Schedule the room for a specific time
@error('bbb_scheduled_at')
{{ $message }}
@enderror
Exam Room Settings: These settings are for online proctored exams
@endif @if($room->isBbbRoom() && (auth()->user()->isAdmin() || auth()->user()->isLmsManager() || $room->bbb_created_by == auth()->id()))
BigBlueButton Settings @if($room->isExamRoom()) Exam Room @else Lesson Room @endif
This message will be displayed when participants join
@error('bbb_welcome_message')
{{ $message }}
@enderror
Maximum duration in minutes (15-480)
@error('bbb_duration')
{{ $message }}
@enderror
bbb_record) ? 'checked' : '' }}>
bbb_auto_start_recording) ? 'checked' : '' }}>
bbb_allow_start_stop_recording) ? 'checked' : '' }}>
bbb_mute_on_start) ? 'checked' : '' }}>
@if($room->isExamRoom())
bbb_require_mic) ? 'checked' : '' }}>
@endif
@if($room->isExamRoom())
Exam Room Settings: These settings are for online proctored exams
bbb_require_webcam) ? 'checked' : '' }}>
Participants must have webcam enabled
bbb_enable_proctoring) ? 'checked' : '' }}>
Monitor participants for suspicious activity
bbb_lock_disable_private_chat) ? 'checked' : '' }}>
bbb_lock_disable_note) ? 'checked' : '' }}>
bbb_lock_locked_layout) ? 'checked' : '' }}>
@endif
Meeting Information
Meeting ID:
{{ $room->bbb_meeting_id }}
Status:
{{ ucfirst($room->bbb_status) }}
Moderator Password: {{ $room->bbb_moderator_password ? '********' : 'Not set' }}
Attendee Password: {{ $room->bbb_attendee_password ? '********' : 'Not set' }}
@if($room->bbb_scheduled_at)
Scheduled: {{ $room->bbb_scheduled_at->format('M d, Y H:i') }}
@endif
@endif
@if($room->classes_count == 0 && (auth()->user()->isAdmin() || auth()->user()->isLmsManager()))
Danger Zone

Once you delete a room, there is no going back. Please be certain.

@csrf @method('DELETE')
@if($room->isBbbRoom() && (auth()->user()->isAdmin() || auth()->user()->isLmsManager() || $room->bbb_created_by == auth()->id())) @endif
@endif
@if($room->isBbbRoom() && (auth()->user()->isAdmin() || auth()->user()->isLmsManager() || $room->bbb_created_by == auth()->id())) @endif @endsection @push('scripts') @endpush