@extends('layouts.admin') @section('title', 'Add Room Type') @section('header', 'Create New Room Type') @section('content')
@include('partials.admin._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Masters', 'url' => '#'], ['name' => 'Room Types', 'url' => route('admin.masters.room-types.index')], ['name' => 'Create', 'url' => route('admin.masters.room-types.create')] ] ])
@csrf

Add New Room Type

@error('name')

{{ $message }}

@enderror

Number of individual beds to track in each room of this type.

@foreach($amenities as $amenity) @endforeach
Cancel
@endsection