{{$test->title}}
-
Time Left :
-
00 :
00 :
00
@if ($canUsePause)
-
Pause & Exit
@endif
@include('student.test.layouts.common.information_right')
{!! Form::open(array(
'id'=> 'test-form',
'autocomplete'=> 'nope',
'spellcheck'=> 'false'
)) !!}
@php
$questionHasVideo = FALSE;
$total_para_ques = 0;
$numberQuestion = 0;
@endphp
@foreach($questions as $question)
@if (in_array($question->question_type, ['para','video','audio', 'video_embed','audio_embed']))
@php
++$total_para_ques;
@endphp
@endif
@include('student.test.exam.questions.load', [
'question' => $question,
'total_para_ques' => $total_para_ques,
'numberQuestion' => $numberQuestion = $numberQuestion + 1
])
@endforeach
{!! Form::close() !!}
@include('student.test.layouts.common.footer')