@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.testResult.title_singular') }}
@method('POST') @csrf
@if($errors->has('test'))
{{ $errors->first('test') }}
@endif {{ trans('cruds.testResult.fields.test_helper') }}
@if($errors->has('student'))
{{ $errors->first('student') }}
@endif {{ trans('cruds.testResult.fields.student_helper') }}
@if($errors->has('score'))
{{ $errors->first('score') }}
@endif {{ trans('cruds.testResult.fields.score_helper') }}
@endsection