{{-- resources/views/admin/destinations/edit.blade.php --}} {{-- Edit destination: Category + Country + Short + Long description --}} {{-- Controller: Admin\DestinationController@edit / @update --}} @extends('layouts.admin') @section('title', 'Edit Destination') @section('page_title', 'Edit Destination') @section('page_css') @endsection @section('content')
{{-- Destination Name --}}
@error('name') {{ $message }} @enderror
{{-- Category --}}
@error('category_id') {{ $message }} @enderror
{{-- Country --}}
@error('country_id') {{ $message }} @enderror
{{-- Short Description --}}
@error('short_description') {{ $message }} @enderror
{{-- Long Description --}}
@error('long_description') {{ $message }} @enderror
{{-- Toggles --}}
{{-- Image Upload with current preview --}} {{-- Actions --}}
Cancel
@endsection @section('page_js') @endsection