@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.schstudent.title_singular') }}
@csrf
@if($errors->has('name_ua'))
{{ $errors->first('name_ua') }}
@endif {{ trans('cruds.schstudent.fields.name_ua_helper') }}
@if($errors->has('name_en'))
{{ $errors->first('name_en') }}
@endif {{ trans('cruds.schstudent.fields.name_en_helper') }}
@if($errors->has('userid'))
{{ $errors->first('userid') }}
@endif {{ trans('cruds.schstudent.fields.userid_helper') }}
@endsection