@extends('layouts.exam') @section('title', 'Exam Instructions') @section('content')

Online Examination System

{{ $appSettings->app_name ?? config('app.name') }} Recruitment System

@if($attempt && $attempt->attempt_no > 1)
Attempt #{{ $attempt->attempt_no }}
@endif
Post {{ $application->post?->title }}
Code {{ $application->post?->code }}
@if($application->roll_number)
Roll No {{ $application->roll_number }}
@endif

Exam rules & instructions

@php $secs = config('exam.seconds_per_question'); $mins = intdiv($secs, 60); $rem = $secs % 60; $perQ = $mins > 0 ? "{$mins} minute" . ($mins > 1 ? 's' : '') . ($rem > 0 ? " {$rem} seconds" : '') : "{$secs} seconds"; @endphp
  • 1
    The exam consists of {{ config('exam.questions_per_exam') }} multiple-choice questions.
  • 2
    You have {{ $perQ }} per question. The timer auto-advances when time runs out.
  • 3
    After the final question you'll enter a 10-minute review window to revisit and change answers.
  • 4
    Answers are auto-saved on every navigation — no manual save required.
  • 5
    Do not refresh or close the browser — progress may be lost.
  • 6
    Each question has four options (A–D). Select the single best answer.
  • 7
    Use the question palette on the left or the navigation buttons to move between questions.
  • 8
    Your score and full answer breakdown are shown immediately after submission.
Important: Once started, the exam cannot be paused. Ensure a stable internet connection and a quiet environment before proceeding.
@if(session('error'))
{{ session('error') }}
@endif
@csrf
Back to application
@push('scripts') @endpush @endsection