@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Create Room Category

@if ($errors->any()) @endif

Room Type Configuration

@csrf
Basic Information
0/1000 characters
Channels Configuration ({{ $channels->count() }} available)
@if ($channels->count() > 0)
0 channels selected
Available Channels
@foreach ($channels as $channel)
@endforeach
Selected Channels

No channels selected

Drag channels here or use checkboxes
@else
No channels are available. Please create channels first.
@endif
Menu Controls Configuration ({{ $menuControls->count() }} available)
@if ($menuControls->count() > 0)
0 menus selected
Available Menu Controls
@foreach ($menuControls as $menuControl)
@endforeach
Selected Menu Controls
@else
No menu controls are available. Please create menu controls first.
@endif
Back
@endsection