@extends('layouts.examlayout') @section('header_scripts') @stop @section('content')

{{getPhrase('Instructions')}} {{getPhrase('please_read_the_instructions_carefully')}}

{{getPhrase('exam_name')}}: {{$record->title}}

@if($instruction_data=='')

{{getPhrase('general_instructions')}}:

@else

{{$instruction_title}}:

@endif @if($instruction_data=='')
  1. Общее количество минут: {{$record->dueration}} , чтобы пройти все вопросы.
  2. Таймер обратного отсчета в верхнем правом углу экрана отображает оставшееся время для завершения теста. Когда время заканчивается, тест заканчивается по умолчанию.
  3. Справа отображаются все вопросы:
@else {!! $instruction_data !!} @endif
  • Вы ответили на вопрос.
  • Вы не ответили на вопрос.
  • Вы не ответили на вопрос, но отметили вопрос, как просмотренный.
  • Вы еще не просматривали вопрос.

{!! Form::open(array('url' => 'exams/student/start-exam/'.$record->slug, 'method' => 'POST')) !!}
@if(!$paid_type)
{{ getPhrase('please_accept_terms_and_conditions')}} @endif
@if($paid_type) {{getPhrase('buy_now')}} @else @endif
{!! Form::close() !!}
@endsection @section('footer_scripts') @stop