@extends('layouts.app') @section('title', __('Add GPA System')) @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Exams').' / '. trans('Grade System').' / '. trans('Add').'']) @include('components.sectionbar.examination-bar')
{{ csrf_field() }}
@if ($errors->has('grade_system_name')) {{ $errors->first('grade_system_name') }} @endif
@if ($errors->has('grade')) {{ $errors->first('grade') }} @endif
@if ($errors->has('point')) {{ $errors->first('point') }} @endif
@if ($errors->has('from_mark')) {{ $errors->first('from_mark') }} @endif
@if ($errors->has('to_mark')) {{ $errors->first('to_mark') }} @endif
@endsection