@extends('backend.layouts.master') @section('pageTitle') Promotion @endsection @section('pageContent')

Student Promotion

Note:
This process can't be recoverable. So use this form with caution!
Fail students will re-admit in same class.
Only core subjects will be assigned to students that promoted to next class. For elective and selective subject update each student subject from edit student menu.

@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach

@endif

Current Academic Information:

{!! Form::select('current_academic_year_id', $academic_years, null , ['placeholder' => 'Pick a year...', 'id' => 'current_year_change', 'class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year_id') }}
{!! Form::select('current_class_id', $classes, null , [ 'placeholder' => 'Pick a class...', 'id' => 'current_class_change', 'class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('class_id') }}
{!! Form::select('exam_id', [], null , ['placeholder' => 'Pick a exam...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('exam_id') }}
{!! Form::select('fail_count', [], null , ['placeholder' => 'Pick a option...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('fail_count') }}

Promoting Academic Information:

{!! Form::select('promote_academic_year_id', [], null , ['placeholder' => 'Pick a year...', 'id' => 'promote_year_change', 'class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year_id') }}
{!! Form::select('promote_class_id', $classes, null , [ 'placeholder' => 'Pick a class...', 'id' => 'promote_class_change', 'class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('class_id') }}
@endsection @section('extraScript') @endsection