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

Options for Question: {{ $question->text }}

Back to Question Add Option
@if ($options->isEmpty())

No options found for this question.

@else @foreach ($options as $option) @endforeach
Option Text Correct? Actions
{!! $option->text !!}
{{ $option->is_correct ? '✓ Yes' : '✗ No' }} Edit
@csrf @method('DELETE')
@endif
@if ($options->hasPages())
{{ $options->links() }}
@endif
@endsection