@extends('candidate.beta.layouts.master') @section('page-title'){{$page}}@endsection @section('breadcrumb') @include('candidate.beta.partials.breadcrumb') @endsection @section('content')
{{__('message.question')}} : {{$detail['attempt']}}
{!! textToImage($question['title'], candidateSession()) !!}
@if(isset($question["image"]))

@php $thumb = questionThumb($question['image']); @endphp

@endif
@csrf
@foreach ($question['answers'] as $key => $answer) @endforeach
{{__('message.time_remaining')}}
@php $progress = count($questions) != 0 ? round((($detail['attempt']-1)/count($questions))*100) : 0; @endphp
{{__('message.progress')}} ({{$progress}}%)
@for($i=1; $i <= count($questions); $i++) @php $active = $detail['attempt'] == $i ? 'active' : 'remaining'; @endphp {{$i}} @endfor
{{__('message.description')}}

{{$quiz['description']}}

@endsection