@extends('layouts.auth.app') @section('title', 'Add Screens to Menu') @section('content')

Central Menu Details

Cancel

{{ $menu->ParentCentralMenuName ?? 'N/A' }}

{{ $menu->CentralMenuName ?? 'N/A' }}

{{ $menu->SortOrder ?? 0 }}

{{ ($menu->Active ?? false) ? 'Active' : 'Inactive' }}

Select Screens to Add

Check the screens you want to associate with this menu

@if($errors->any())

{{ $errors->first() }}

@endif
@csrf
@forelse($allScreens ?? [] as $screen) @empty @endforelse
Select Screen Name Screen URL Main Screen
{{ $screen->ScreenName ?? '' }} {{ $screen->ScreenUrl ?? '' }}
No Screens Available
@endsection @push('scripts') @endpush