@extends('layouts/contentNavbarLayout') @section('title', 'Add Room') @section('content')

Add Room

@if (session('success')) @endif @if ($errors->any())
@endif @if($floors->isEmpty())
No floors found. Please create a floor first.
@else
@csrf
@error('floor_id')
{{ $message }}
@enderror
Must be unique within the selected floor.
@error('name')
{{ $message }}
@enderror
Maximum number of beds allowed in this room. Set 0 for no limit.
@error('capacity')
{{ $message }}
@enderror

Add beds to this room (optional)
Cancel
@endif
@endsection @section('page-script') @endsection