@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.schReport.title_singular') }}
@method('PUT') @csrf
@if ($errors->has('schclass'))
{{ $errors->first('schclass') }}
@endif {{ trans('cruds.schReport.fields.schclass_helper') }}
@if ($errors->has('schstudent'))
{{ $errors->first('schstudent') }}
@endif {{ trans('cruds.schReport.fields.schstudent_helper') }}
@if ($errors->has('schteacher'))
{{ $errors->first('schteacher') }}
@endif {{ trans('cruds.schReport.fields.schteacher_helper') }}
@if ($errors->has('schsubject'))
{{ $errors->first('schsubject') }}
@endif {{ trans('cruds.schReport.fields.schsubject_helper') }}
@if ($errors->has('report'))
{{ $errors->first('report') }}
@endif {{ trans('cruds.schReport.fields.report_helper') }}
@if ($errors->has('report_en'))
{{ $errors->first('report_en') }}
@endif {{ trans('cruds.schReport.fields.report_en_helper') }}
@endsection