@extends('layouts.app') @section('content')

{{ $entry->contest->title }}

@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@csrf @foreach($questions as $index => $question)

Q{{ $index + 1 }}. {{ $question->question_text }}

@foreach($question->options as $option) @php $isMultiple = $question->question_type === 'multiple'; @endphp @endforeach
@endforeach
@endsection