@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.lesson.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('class'))
{{ $errors->first('class') }}
@endif {{ trans('cruds.lesson.fields.class_helper') }}
@if($errors->has('room'))
{{ $errors->first('room') }}
@endif {{ trans('cruds.lesson.fields.room_helper') }}
@if($errors->has('weekday'))
{{ $errors->first('weekday') }}
@endif {{ trans('cruds.lesson.fields.weekday_helper') }}
@if($errors->has('start_time'))
{{ $errors->first('start_time') }}
@endif {{ trans('cruds.lesson.fields.start_time_helper') }}
@if($errors->has('end_time'))
{{ $errors->first('end_time') }}
@endif {{ trans('cruds.lesson.fields.end_time_helper') }}
@endsection