@extends('admin.layouts.container') @section('content') @php $lang = getCurrentLocale(); @endphp

{{ $head ?? '' }}

@if($exam ?? '' && $exam->id) @method('PUT') @endif @CSRF
@if(!($exam ?? '' && $exam->id))
{{__('questions.questionanswer') }}
{{__('questions.question') }}
{{__('questions.add_item')}}
{{__('questions.add_question')}}
@else
{{__('questions.questionanswer') }}
@foreach($questions as $key=>$row) @endforeach
{{__('questions.question') }}
@foreach($row->answers as $key_answer=>$answer)
@endforeach
type == '1') checked @endif name="question[{{$key}}][answer][{{$key_answer}}][check]">
{{__('questions.add_item')}}
{{__('questions.add_question')}}
@endif
@endsection @section('inner_js') {{-- --}} @endsection