@extends('admin-dining.layouts.app') @section('title', 'Edit Hotel') @section('page-title', 'Edit Hotel - ' . $hotel->location) @section('content')
@csrf @method('PUT')
Basic Information
@error('location')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Hotel Image
@if($hotel->image)

Current Image:

{{ $hotel->location }}
@endif
Accepted formats: JPEG, PNG, JPG, GIF, WebP (Max 2MB) @error('image')
{{ $message }}
@enderror
Publishing
@error('status')
{{ $message }}
@enderror
is_featured) ? 'checked' : '' }}>
Cancel
@endsection