@extends('term-volunteer-application-forms.volunteer-application-layout') @section('step', 2) @section('back-button-url') {{route('portal.account.term-volunteer-application.personal-and-contact-details', compact('term_volunteer_application'))}} @stop @section('pages-content')

Your availability

@csrf

Please tick the holiday or holidays for which you are available. By ticking a box you are confirming that vou will be available to lead for the entirety of this period.

@foreach($grouped_event_options as $start_date => $grouped_event_options_by_end_date) @foreach($grouped_event_options_by_end_date as $end_date => $event_options) @php $is_checked = false; if(old('availability_data_range[]')) { foreach ($event_options->pluck('id') as $id) { $is_checked = in_array($id, old('availability_data_range[]')); if($is_checked) { break; } } } @endphp
@foreach($event_options as $event_option) {{ $event_option->full_name }} @endforeach
@endforeach @endforeach

Preferences

Examples: ‘I'd like to do 2 holidays in total’, ‘I'd like to do one senior and one junior.

Family information

For children, date of birth is preferable to age because it will help us with planning in the future. There's no need to repeat dates of birth if you gave them last year.

You are free to fill in each section of the return form in your own time.

@endsection