@extends('backend.layouts.front_master') @section('pageTitle') Online Result Search @endsection @section('bodyCssClass') public_marksheet_form_body_color @endsection @section('pageContent') @if (Session::has('success') || Session::has('error') || Session::has('warning'))
@if (Session::has('success'))
{{ Session::get('success') }}
@elseif(Session::has('error'))
{{ Session::get('error') }}
@else
{{ Session::get('warning') }}
@endif
@endif

Online Result Search

@csrf
{!! Form::select('academic_year', $academic_years, null , ['placeholder' => 'Pick a year...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year') }}
{!! Form::select('class_id', $classes, null , [ 'placeholder' => 'Pick a class...', 'id' => 'class_change', 'class' => 'form-control select2 notFireAjax', 'required' => 'true']) !!} {{ $errors->first('class_id') }}
{!! Form::select('exam_id', $exams, null , ['placeholder' => 'Pick a exam...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('exam_id') }}
{{ $errors->first('regi_no') }}
@captcha {{ $errors->first('captcha') }}
@endsection @section('extraScript') @endsection