@extends('web.layouts.container') @section('css') @endsection @section('content')
@csrf()
تفاصيل الاختبار

اسم الأختبار

مده الأختبار

رفع صوره الأختبار

@if(count($questions)) @foreach($questions as $questionKey => $question)
@if($question->type == 'question_with_text')
{{__('electronicTestQuestions.'.$question->type)}}

نص السؤال

الأجابات

@foreach($question->answers['answers'] as $key => $answer)
answers['right_answer'] == ($key+1) ? 'checked' : ''}} type="radio" id="ans_{{($questionKey+1).'_'.($key+1)}}" value="{{($key+1)}}" name="right_answer" class="custom-control-input">
@endforeach
{{ __('electronicTestQuestions.solve_method') }}

{{ __('electronicTestQuestions.add_video_link') }}

{{ __('electronicTestQuestions.upload_image') }}

أضغط لرفع الصوره
@endif @if($question->type == 'question_with_image')
{{__('electronicTestQuestions.'.$question->type)}}
أضغط لرفع الصوره

الأجابات

@foreach($question->answers['answers'] as $key => $answer)
answers['right_answer'] == ($key+1) ? 'checked' : ''}} type="radio" id="ans_{{($questionKey+1).'_'.($key+1)}}" value="{{($key+1)}}" name="right_answer" class="custom-control-input">
@endforeach
{{ __('electronicTestQuestions.solve_method') }}

{{ __('electronicTestQuestions.add_video_link') }}

{{ __('electronicTestQuestions.upload_image') }}

أضغط لرفع الصوره
@endif
@endforeach @endif
@endsection @section('inner_js') @endsection