@extends('adminlte::page') @section('title', config('adminlte.title') . ' | Holidays: Booking my leave') @section('content_header') @include('holidays.partials.styles')

Leave Request

@stop @section('content')
@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
@stop @section('footer')   @stop @push('js') @include('holidays.partials.booking-script') @endpush