@extends('layouts.app') @section('title', 'Career Quiz — CareerPath Pakistan') @push('styles') @endpush @section('content')
AI Career Personality Quiz

Find Your Perfect Career

Answer {{ $questions->count() }} quick questions and get personalized career recommendations based on your personality and interests.

@csrf
Question 1 of {{ $questions->count() }} 0%
@foreach($questions as $i => $q)
{{ $q->category ?? 'Question' }}
Question {{ $i + 1 }} / {{ $questions->count() }}
{{ $q->question }}
@foreach((array)($q->options ?? []) as $oi => $option)
@endforeach
@endforeach
@push('scripts') @endpush @endsection