@extends('frontend.layouts.default') @section('title', __('pre_arrival.title')) @section('content')
{{ __('pre_arrival.subtitle') }}
{{ __('pre_arrival.need_help') }}

{{ __('pre_arrival.title') }}

{{ __('pre_arrival.hero_copy') }}

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Step 1: choose place --}}
@if(! $selectedPlace)
@else @endif
@if($selectedPlace)
{{-- Step 2: details --}}

{{ __('pre_arrival.details_copy') }}

@csrf
{{ __('pre_arrival.arrival_at_help') }}
@else
{{ __('pre_arrival.choose_place_cta') }}
@endif
@endsection