@extends('frontend.layouts.booking') @section('title', __('Select dates')) @section('page_css') @endsection @section('content')

{{ __('Pick your daypass dates at :gym', ['gym' => $place->name]) }}

{{ __('Select one or more future dates, then set how many people will come on each day.') }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __('Closed days and exceptional closures are disabled.') }}
{{ __('Pick a date on the calendar to get started.') }}
{{ __('Back') }}
@endsection @section('page_scripts') @endsection