@extends('admin.include.main') @section('content')

ADD CLASS

@csrf
Class Name*
@if ($errors->has('class_name'))
{{ $errors->first('class_name') }}
@endif
Class In Numeric*
@if ($errors->has('class_symbolic'))
{{ $errors->first('class_symbolic ') }}
@endif

Fee Details

@if($fdc->isEmpty())

Please Add Fee Type First

@else
@foreach($feetype as $f) @if($f->type == "default")
{{$f->name}}*
@endif @endforeach
@endif
@endsection