@extends('layouts.front') @section('page-css') @endsection @section('content')

{{ $title }}

Exam: {{ $examName }}

Time Remaining
@csrf
@if ($firstQuestion)
Question {{ $answeredQuestionsCount +1 }}/{{ $totalQuestions }}

{{ $firstQuestion->question }}

@foreach ($firstQuestion->options as $option)
@endforeach @else

No questions available.

@endif
@endsection @section('page-scripts') @endsection