@extends('layouts.master') @section('body_id', 'vendor_edit_hotel_page') @section('content')
@include('frontend.vendor.partials.sidebar')

Edit Property Configurations

Modify configurations, upload assets, and adjust indexing tracking rules for your property logs.

@csrf @method('PUT')

Basic Property Information

Tip: If changing, go to Google Maps -> Share -> Embed a map -> Copy only the src="..." address.

Property Media & Display Uploads

@if($hotel->cover_image)
Current Cover
@endif

Click or drag your new main hotel image if you want to replace the current one...

@if(!empty($hotel->gallery_images) && is_array($hotel->gallery_images)) @endif

Available Amenities & Facilities

@php $activeAmenities = is_array($hotel->amenities) ? $hotel->amenities : []; @endphp
@foreach(['Free Wi-Fi' => 'fa-wifi', 'Air Conditioning' => 'fa-snowflake-o', 'Complimentary Breakfast' => 'fa-coffee', 'Swimming Pool' => 'fa-life-ring', 'Free Parking Space' => 'fa-car', '24/7 Room Service' => 'fa-bell-o', 'Power Backup' => 'fa-bolt', 'CCTV Security' => 'fa-video-camera'] as $value => $icon) @endforeach
@endsection