@extends('admin.layouts.app') @section('title', __('Create Waiting List Request')) @section('breadcrumb') @endsection @section('content')
{{ __('Add to Waiting List') }}
@csrf
@error('patient_id')
{{ $message }}
@enderror
@error('specialty_id')
{{ $message }}
@enderror
{{ __('Optional - will be considered when converting to appointment') }} @error('preferred_date')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
{{ __('common.cancel') }}
{{ __('About Waiting List') }}

{{ __('Add patients to the waiting list when:') }}

  • {{ __('Desired appointment slot is fully booked') }}
  • {{ __('Patient prefers a specific doctor') }}
  • {{ __('Patient wants earlier appointment') }}
  • {{ __('Specialty slots are limited') }}
{{ __('Next Steps') }}
  1. {{ __('Patient added to waiting list') }}
  2. {{ __('System tracks position in queue') }}
  3. {{ __('Notify patient when slot available') }}
  4. {{ __('Convert to appointment') }}
  5. {{ __('Patient confirmed') }}
@endsection @push('scripts') @endpush