@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.log.title_singular') }}
@csrf
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.log.fields.user_helper') }}
@if($errors->has('notes'))
{{ $errors->first('notes') }}
@endif {{ trans('cruds.log.fields.notes_helper') }}
@endsection