@extends('layouts.master') @section('content') @include('modules.carousel') @if($row)
কুইজ প্রতিযোগিতা
{!! Form::model($row,[ 'method' => 'PUT', 'route' => [ 'quiz.update', 'en', $row], 'name' => 'user-form', 'id' => 'user-form', 'autocomplete' => 'off' ]) !!}

প্রশ্ন: {!! $row->title !!}

@foreach ($row->options as $option)
{!! Form::radio('correct', $option->id, false, ['id' => 'correct'.$option->id.'on', '']) !!} {!! Form::label('correct'.$option->id.'on', $option->title) !!}
@endforeach
{{--mx-auto d-block--}} {!! Form::close() !!}
@endif @endsection