@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Slots Availability

@csrf

Schedule

@if (session()->has('message'))
{{ session('message') }}
@elseif (session()->has('error'))
{{ session('error') }}
@endif @foreach ($slots as $index => $slot)
day) }}" required readonly /> @if ($errors->has("slots.$index.day")) {{ $errors->first("slots.$index.day") }} @endif
start_time) }}" /> @if ($errors->has("slots.$index.start_time")) {{ $errors->first("slots.$index.start_time") }} @endif
end_time) }}" /> @if ($errors->has("slots.$index.end_time")) {{ $errors->first("slots.$index.end_time") }} @endif
@endforeach
@include('partials.footer')
@include('global.footer-links')