@extends('layouts.home') @section('title', 'Survey Started') @section('content')

Survey Running

Survey : {{ $singleexam->name }}

YOU HAVE TO FINISH SURVEY AND PRESS FINISH SURVEY BUTTON. OTHERWISE YOUR SURVEY WILL NOT BE EVALUATED

{{ Form::open() }} @foreach($question as $q)

Question : {{ $q->question }}


@if($q->third_option != NULL)
@endif @if($q->fourth_option != null)
@endif @if($q->fifth_option)
@endif

@endforeach
{{ Form::close() }}
@endsection