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

{{ __('dashboard.Add New Quiz Question') }}

@csrf
@error('question_id')
{{ $message }}
@enderror
@error('score')
{{ $message }}
@enderror
@endsection @section('scripts') @endsection