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

Add Bed

@if (session('success')) @endif @if ($errors->any())
@endif @if($rooms->isEmpty())
No rooms found. Please create a room first.
@else
@csrf
@error('room_id')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
@error('rent_amount')
{{ $message }}
@enderror
Cancel
@endif
@endsection @section('page-script') @endsection