@extends('layouts.instructor') @section('breadcrumb')

{{__('Manage Question')}}

@endsection @section('content')
{{$exam->name}}

{{ @$exam->course->title }}

@csrf
@foreach($question->options as $key => $option)
is_correct_answer == 'yes' ? 'checked' : ''}} id="correct_ans{{$key}}">
@endforeach
@endsection @push('script') @endpush