@include('holidays.partials.alerts')
@include('holidays.partials.validation-errors')
@if (is_null($profile->workingdays))
@include('holidays.partials.no-working-days-alert')
@elseif ($checkTwoYears === false)
@include('holidays.partials.booking-unavailable-alert')
@else
@include('holidays.partials.booking-form', [
'holidays' => $holidays,
'NxtYrsHolidays' => $nxtYrsHolidays,
'holidayPending' => $holidayPending,
'profile' => $profile,
'MyUser' => $myUser,
'wfh_data' => $wfh_data,
'pub_holiday' => $pub_holiday,
'daysThisYear' => $daysThisYear,
'daysNextYear' => $daysNextYear,
])
@endif