@extends('layouts.app') @section('title', 'Book Session — ' . ($counselor->user->name ?? 'Counselor')) @push('styles') @endpush @section('content')
Counselors Book Session

Book a Session

Schedule your career counseling session with {{ $counselor->user->name ?? 'the counselor' }}

@csrf @if($errors->any())
{{ $errors->first() }}
@endif

Select Date

Select Time Slot

@foreach(['09:00','10:00','11:00','12:00','14:00','15:00','16:00','17:00'] as $time)
@endforeach

Meeting Type

Your Message (Optional)

{{ substr($counselor->user->name??'C',0,1) }}
{{ $counselor->user->name ?? 'Counselor' }}
{{ $counselor->specialization }}
@for($s=0;$s<5;$s++) {{ $s < round($counselor->rating??4) ? '★' : '☆' }} @endfor ({{ $counselor->rating ?? '4.5' }})
Session Fee PKR {{ number_format($counselor->session_fee ?? 0) }}
Experience {{ $counselor->experience_years }} years
Status Available

What to Expect

  • 60-minute guided session
  • Personalized career advice
  • Written session summary
  • Free follow-up Q&A
@endsection