@extends('layouts.admin') @section('content')

Add New Room

@csrf
@error('name')

{{ $message }}

@enderror
@error('room_number')

{{ $message }}

@enderror

Optional: Room number will be displayed with the room name.

@error('room_category')

{{ $message }}

@enderror

Select accommodation type or conference facility.

@error('description')

{{ $message }}

@enderror
@error('price')

{{ $message }}

@enderror
@error('images')

{{ $message }}

@enderror @error('images.*')

{{ $message }}

@enderror

Selected images will appear here. Click "Add More" to select additional images.

You can upload multiple images and manage them as needed.

@php $amenities = [ 'breakfast' => ['icon' => 'fa-utensils', 'label' => 'Breakfast'], 'lunch' => ['icon' => 'fa-utensils', 'label' => 'Lunch'], 'dinner' => ['icon' => 'fa-utensils', 'label' => 'Dinner'], 'wifi' => ['icon' => 'fa-wifi', 'label' => 'Free WiFi'], 'ict' => ['icon' => 'fa-laptop', 'label' => 'ICT Facilities'], 'parking' => ['icon' => 'fa-car', 'label' => 'Free Parking'], 'air_conditioning' => ['icon' => 'fa-snowflake', 'label' => 'Air Conditioning'], 'tv' => ['icon' => 'fa-tv', 'label' => 'TV'], 'balcony' => ['icon' => 'fa-home', 'label' => 'Balcony'], 'kitchen' => ['icon' => 'fa-kitchen-set', 'label' => 'Kitchen'], 'bathroom' => ['icon' => 'fa-bath', 'label' => 'Private Bathroom'], 'laundry' => ['icon' => 'fa-shirt', 'label' => 'Laundry Service'], 'room_service' => ['icon' => 'fa-bell', 'label' => 'Room Service'], 'security' => ['icon' => 'fa-shield', 'label' => '24/7 Security'], ]; @endphp @foreach($amenities as $key => $amenity) @endforeach
@error('amenities')

{{ $message }}

@enderror

Select amenities included with this room to attract customers.

Cancel
@endsection