@extends('layouts.app') @section('title', 'Book a Session — CareerPath') @push('styles') @endpush @section('content')

📅 Book a Session

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

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

Select Date

Choose Time

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

Meeting Type

Message (Optional)

@guest
Please login or register to confirm your booking.
@endguest
{{ substr($counselor->user->name??'C',0,1) }}
{{ $counselor->user->name ?? 'Counselor' }}
{{ $counselor->specialization }}
★★★★★ ({{ $counselor->rating ?? '4.5' }})
Session Fee PKR {{ number_format($counselor->session_fee ?? 0) }}
Experience {{ $counselor->experience_years ?? '—' }} years
Session Length 60 minutes
@endsection