@extends('Layouts.Application') @section('MainContent')
{{ isset($OnlineExam->subject->subject_name) ? $OnlineExam->subject->subject_name : '' }} - {{ $OnlineExam->title }} Go Back Duration: {{ $remainingMinutes }} min

Click/Press on the circle beside the correct answer

{{ csrf_field() }} @if ($OnlineExam->description)

{!! $OnlineExam->description !!}

@endif @if (!empty($OnlineExam->questions)) @foreach ($OnlineExam->questions as $key => $value)
{{ $key + 1 }})

{!! $value['question'] !!}

@endforeach @endif
@endsection