@extends('frontend.layouts.default') @section('title', 'Pre-Arrival Check') @section('page_css') @endsection @section('content')

Pre-Arrival Validation


@if ($place || $date || $firstname || $lastname || $email) @if ($place) @endif @if ($date) @endif @if ($firstname || $lastname) @endif @if ($email) @endif
Pre-arrival Information
Place {!! $place !!}
Arrival {!! $date !!}
Guest {!! trim(($firstname ?? '').' '.($lastname ?? '')) !!}
Email {!! $email !!}

@endif
@if ($valid)

Pre-arrival form found.

@if ($reason)

{!! $reason !!}

@endif @else

{!! $reason !!}

@endif
@endsection