@extends(Request::ajax() ? 'layouts.ajax-main' : 'layouts.main') @section('title'){{ _('Book an Event') }} @endsection @section('page-title')Events chevron_right Timetable chevron_right Book @endsection @section('content')

{{ _('Book an Event') }}

{{ method_field('put') }} {{ csrf_field() }}
    @foreach(App\Models\EventType::orderBy('name', 'asc')->get() as $type)
  • {{ $type->name }}
  • @endforeach
@if ($errors->has('event_type')) {{ $errors->first('event_type') }} @endif
@if ($errors->has('room_id')) {{ $errors->first('room_id') }} @endif
@endsection