@extends('layouts.public-booking', ['title' => 'Reschedule Appointment - Booklio']) @include('public.booking.partials.data') @section('content')
@if ($errors->any())
{{ $errors->first() }}
@endif

Current appointment

{{ $selected['service'] }} with {{ $selected['staff'] }}

{{ $selected['date'] }} at {{ $selected['time'] }} - Booking {{ $selected['booking_id'] }}

@csrf

New date

@foreach ($dateOptions->take(6) as $dateOption) @endforeach

New time

@forelse ($slotGroups as $group => $slots) @foreach ($slots as $slotValue => $slotLabel) @endforeach @empty

No slots available today.

@endforelse
Confirm reschedule Keep current booking
@endsection