{{-- resources/views/admin/trip-templates/create.blade.php --}} @extends('admin.layouts.app') @section('title', 'Create Trip Template') @section('page-title', 'Create Trip Template') @section('page-description', 'Design an amazing trip template that will inspire travelers worldwide.') @section('content')

Trip Template Information

Create a comprehensive template that users can customize for their perfect trip

@csrf

1
Basic Information

Essential details about your trip template

@error('destination_id')

{{ $message }}

@enderror
@error('title')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror

Maximum 2000 characters

2
Trip Details

Configure the specifics of your trip template

@error('duration_days')

{{ $message }}

@enderror
$
@error('base_price')

{{ $message }}

@enderror
@error('difficulty_level')

{{ $message }}

@enderror
@error('trip_style')

{{ $message }}

@enderror

3
Trip Highlights

Add key highlights that make this trip special

@if(old('highlights')) @foreach(old('highlights') as $index => $highlight)
@endforeach @else
@endif
@error('highlights')

{{ $message }}

@enderror

Maximum 10 highlights, 500 characters each

4
Featured Image

Upload a stunning cover image for your template

or drag and drop

PNG, JPG, GIF up to 2MB

@error('featured_image')

{{ $message }}

@enderror

5
Template Options

Additional settings for your template

Featured templates are highlighted to users during trip selection and appear at the top of search results

Back to Templates
@endsection