@extends('layouts.admin') @section('title', $pageTitle) @section('content') @include('include.admin.toast')
@csrf @method('POST') {{-- Basic details --}}
@error('title')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror

{{-- Moderators section --}}

{{ __('Moderators') }}

@foreach ($meeting->meetingModerators as $index => $mod)
{{ $mod->user->username ?? '—' }} {{ $mod->user->email ?? '' }}
{{ __('To change user, remove and re-add.') }}
@if ($mod->video_path)
{{ $mod->video_original_name }} ({{ __('Upload new to replace') }})
@endif
@endforeach
{{ __('No moderators added yet.') }}
{{-- New moderator rows added dynamically will appear here --}}
{{ __('Cancel') }}
{{-- Template for new (not pre-existing) moderator rows --}} @endsection @section('script') @endsection