@extends('layouts.admin') @section('title','Edit Question') @section('page-title','Edit Question') @section('content')
Edit Question #{{ $question->id }}
@csrf @method('PUT')
@if($question->question_image)
@endif
{{-- Options --}}
Select the radio button next to the correct answer.
@foreach(['A','B','C','D'] as $i => $label) @php $option = $question->options->firstWhere('option_label', $label); @endphp
correct_option?->option_label) == $label ? 'checked' : '' }} required>
@if($option?->option_image)
@endif
@endforeach
is_active) ? 'checked' : '' }}>
Cancel
@endsection @push('styles') @endpush @push('scripts') @endpush