@extends('frontend.layouts.default') @section('title', 'Pre-Arrival Check') @section('page_css') @endsection @section('content') Pre-Arrival Validation @if ($place || $date || $firstname || $lastname || $email) Pre-arrival Information @if ($place) Place {!! $place !!} @endif @if ($date) Arrival {!! $date !!} @endif @if ($firstname || $lastname) Guest {!! trim(($firstname ?? '').' '.($lastname ?? '')) !!} @endif @if ($email) Email {!! $email !!} @endif @endif @if ($valid) Pre-arrival form found. @if ($reason) {!! $reason !!} @endif @else {!! $reason !!} @endif @endsection
{!! $reason !!}