@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}} {{-- @dd(@$data['online_exam']->examQuestions) --}}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('start')
{{ $message }}
@enderror
@error('end')
{{ $message }}
@enderror
@error('published')
{{ $message }}
@enderror
@error('question_group')
{{ $message }}
@enderror
@error('class')
{{ $message }}
@enderror
@error('section')
{{ $message }}
@enderror
@error('subject')
{{ $message }}
@enderror
@error('mark')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('student_category')
{{ $message }}
@enderror
@error('gender')
{{ $message }}
@enderror
{{-- First row end --}} {{-- Second row --}}
{{ ___('online-examination.Question list') }}
@foreach ($data['questions'] as $item) @endforeach
{{ ___('common.All') }} {{ ___('online-examination.Question') }} {{ ___('online-examination.Type') }}
id, old('questions_ids',@$data['online_exam']->examQuestions->pluck('question_bank_id')->toArray())) ? 'checked' : '' }}> {{ $item->question }} {{ ___(\Config::get('site.question_types')[$item->type]) }}
@if ($errors->has('questions_ids')) {{ ___('online-examination.At least select one.') }} @endif
{{ ___('student_info.Students List') }}
@foreach ($data['students'] as $item) @endforeach
{{ ___('common.All') }} {{ ___('student_info.admission_no') }} {{___('student_info.Student Name') }} {{ ___('academic.class') }} ({{ ___('academic.section') }}) {{ ___('student_info.guardian_name') }} {{ ___('student_info.Mobile Number') }}
student->id, old('student_ids',@$data['online_exam']->examStudents->pluck('student_id')->toArray())) ? 'checked' : '' }}> {{ @$item->student->admission_no }} {{ @$item->student->first_name }} {{ @$item->student->last_name }} {{ @$item->class->name }} ({{ @$item->section->name }}) {{ @$item->student->parent->guardian_name }} {{ @$item->student->mobile }}
@if ($errors->has('student_ids')) {{ ___('online-examination.At least select one.') }} @endif
{{-- Second row end --}}
@endsection