@extends('backEnd.master') @section('title') @lang('student.student_promote') @endsection @section('mainContent')

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'student-current-search-with-exam', 'method' => 'GET', 'enctype' => 'multipart/form-data', 'id' => 'search_promoteA']) }}
@if ($errors->has('current_session')) {{ $errors->first('current_session') }} @endif
@if ($errors->has('promote_session')) {{ $errors->first('promote_session') }} @endif
loader
@if ($errors->has('current_class')) {{ $errors->first('current_class') }} @endif
loader
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
@if ($errors->has('exam')) {{ $errors->first('exam') }} @endif
{{ Form::close() }}
@if(isset($students))

@lang('student.promote') | @lang('common.academic_year') : {{ $search_current_academic_year !='' ? $search_current_academic_year->year .'['. $search_current_academic_year->title .']' :'' }}, @lang('common.class'): {{$search_current_class != '' ? $search_current_class->class_name :' '}}, @lang('common.section'): {{$search_current_section !='' ? $search_current_section->section_name : ' '}}, @lang('exam.exam'): {{ $search_exams !='' ? $search_exams : ' '}}, @lang('student.promote_academic_year') : {{ $search_promote_academic_year !='' ? $search_promote_academic_year->year .'['. $search_promote_academic_year->title .']' :''}}

@if ($errors->any())
{{ __('common.whoops_something_went_wrong') }}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'student-promote-store', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'student_promote_submit']) }}
@foreach($students as $key=>$student) @endforeach
@lang('student.current_roll') @lang('common.name') @lang('exam.total_marks') @lang('exam.gpa') @lang('reports.result') @lang('exam.position') @lang('common.class_section')) @lang('student.promote_class') @lang('student.promote_section') @lang('student.next_roll_number')
{{$student->studentinfo->roll_no}}
{{ $student->studentinfo->first_name .' '.$student->studentinfo->last_name }} {{ $student->total_marks}} {{ $student->gpa_point }} {{ $student->result }} {{ $key+1 }} {{$student->class !=""?$student->class->class_name:""}} ({{ $student->section !=""?$student->section->section_name:"" }})
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
loader
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
{{-- --}}
@if(userPermission(82))
@endif
{{ Form::close() }}
@endif @endsection @section('script') @endsection