@extends('layouts.app') @section('title', __('Students')) @section('content')
@include('layouts.leftside-menubar')
@php $courseTN = school('country')->code == 'BD' ? 'Subject' : 'Course'; @endphp @include('components.pages-bar',['pageTitle' =>''. trans('Academics').' / '. trans(school('country')->code == 'BD' ? 'Class' : 'Grade').' / '. trans('Edit').'']) @include('components.sectionbar.academics-bar')
{{csrf_field()}}
@error('name') {{$message}} @enderror
@error('class_number') {{$message}} @enderror
{{--
--}}
{{school('country')->code == 'BD' ? 'Leave Empty if this Class belongs to no Group' : 'Leave Empty if this Grade belongs to no Group '}}
{!! Form::select('status',status(),$class->status,array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Select'),'required')) !!}
@endsection