@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('styles') @endsection @section('title', __('dashboard.Edit Quiz Question') @section('page_heading', __('dashboard.Edit Quiz Question')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.View All Quiz Questions') }} @endsection @section('content')

{{ __('dashboard.Edit Quiz Question') }}

@csrf @method('PUT')
{{ $quizQuestion->question->question_text }}
{{ $quizQuestion->question->user->first_name . ' ' . $quizQuestion->question->user->last_name }}
{{ __('dashboard.Score') }}:{{ $quizQuestion->score }} {{ __('dashboard.Difficulty Level') }}:{{ $quizQuestion->question->difficultyLevel->name }}
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection