@section('Dashboard')

shapes {!! __('Create Bookings') !!}

{!! __('Welcome to the Bookings Management Dashboard! Here, you can easily Create new Bookings to tailor the system to your needs. Simply navigate to the Create Bookings section to get started.') !!}


@if($errors->any())
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif

{!! __('Bookings Form') !!}

@csrf
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@error('time')
{{ $message }}
@enderror
@include('layouts.footer')
@endsection