{{-- resources/views/admin/hotels/edit.blade.php --}} {{-- Edit hotel form: pre-filled fields, current image thumbnail, AJAX dropdowns --}} {{-- Controller: Admin\HotelController@edit / @update --}} @extends('layouts.admin') @section('title', 'Edit Hotel') @section('page_title', 'Edit Hotel') @section('page_css') @endsection @section('content')
{{-- Category --}}
@error('category_id') {{ $message }} @enderror
{{-- Country --}}
@error('country_id') {{ $message }} @enderror
{{-- Destination (AJAX populated, pre-selected) --}}
@error('destination_id') {{ $message }} @enderror
{{-- Name --}}
@error('name') {{ $message }} @enderror
{{-- URL --}}
@error('url') {{ $message }} @enderror
{{-- Discount % --}}
@error('discount_percent') {{ $message }} @enderror
{{-- Description --}}
@error('description') {{ $message }} @enderror
{{-- Toggles row --}}
{{-- Image upload with current image preview --}} {{-- Form actions --}}
Cancel
@endsection @section('page_js') @endsection