@extends('admin.layouts.app') @section('title', 'Edit Room Type') @section('page_title', 'Rooms & Suites') @section('content')

Edit Room Type

Update {{ $roomType->name }} details and gallery.

Back to List
@csrf @method('PUT') @include('admin.room-types._form', [ 'roomType' => $roomType, 'submitText' => 'Update Room Type', ])
{{-- These forms must remain outside the main update form. --}} @foreach($roomType->images as $roomImage) @endforeach @endsection