{{-- resources/views/pro/itins/create.blade.php --}} @extends('layouts.base') @section('title', __('Create an itinerary')) @section('content')

{{ __('Create an itinerary') }}

@if($errors->any())
@endif
@csrf
{{-- Name (unique) --}}
{{-- Assigned manager is always the current Pro admin --}} {{-- Company (fixed to current Pro admin’s company) --}}
{{-- Assigned users (company members, id > 1) --}}
@forelse($companyUsers as $u) @empty
{{ __('No users found for your company (excluding root).') }}
@endforelse
{{-- (Optional) Waypoints info --}}
{{ __('You can attach waypoints after creating the itinerary (edit screen).') }}
{{ __('Pick among your available waypoints, then drag to order.') }}

{{ __('Available') }}

{{ __('Loading…') }}

{{ __('Selected (drag to reorder)') }}

{{ __('No waypoint selected yet.') }}
{{ __('Back') }}
@push('scripts') @endpush @endsection