{{-- resources/views/admin/destinations/create.blade.php --}} {{-- Create destination: Category + Country + Short Desc + Long Desc + Image --}} {{-- Controller: Admin\DestinationController@create / @store --}} @extends('layouts.admin') @section('title', 'Add Destination') @section('page_title', 'Add Destination') @section('page_css') @endsection @section('content') {{-- Destination Name --}} Destination Name * @error('name') {{ $message }} @enderror {{-- Category --}} Category (optional) Select Category @foreach($categories as $cat) id ? 'selected' : '' }}> @if($cat->icon) {{ $cat->name }} @else {{ $cat->name }} @endif {{ $cat->name }} @endforeach Group this destination under a category (e.g. Hotels, Flights) @error('category_id') {{ $message }} @enderror {{-- Country --}} Country * Select Country @foreach($countries as $country) id ? 'selected' : '' }}> {{ $country->name }} ({{ strtoupper($country->code ?? '') }}) @endforeach @error('country_id') {{ $message }} @enderror {{-- Short Description --}} Short Description (max 300 chars — shown in cards/listings) @error('short_description') {{ $message }} @enderror {{-- Long Description --}} Long Description (full detail — shown on destination page) {{ old('long_description') }} @error('long_description') {{ $message }} @enderror {{-- Toggles --}} Popular Destination Status (Active) {{-- Image Upload --}} {{-- Actions --}} Save Destination Cancel @endsection @section('page_js') @endsection