@extends('layouts.app') @section('title', __('Grade')) @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Exams').' / '. trans('Grades').'']) @include('components.sectionbar.examination-bar')
{!! Form::open(['route' => 'exams.post_report', 'method' => 'post']) !!}
{!! Form::label('report_type', trans('Report Type'), ['class' => 'control-label']) !!} {!! Form::select('report_type',examReportType(), null, array('required', 'class' => 'select2 form-control','placeholder'=>trans('Choose'))) !!} @error('report_type') {{ $message }} @enderror
{!! Form::label('exam', trans('Exam'), ['class' => 'control-label']) !!} {!! Form::select('exam',$exam, null, array('required', 'class' => 'select2 form-control','placeholder'=>trans('Choose'))) !!} @error('exam') {{ $message }} @enderror
{!! Form::label('section', trans('Section'), ['class' => 'control-label']) !!} {!! Form::select('section',$section, null, array('required', 'class' => 'select2 form-control', 'placeholder' => trans('Choose'))) !!} @error('section') {{ $message }} @enderror
{!! Form::close() !!} @if (empty($session))
*@lang('Note') : @lang('There has no session active now.') @lang('Please active an session first.') @endif
@endsection