@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.note.title_singular') }}
@method('POST') @csrf
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.note.fields.user_helper') }}
@if($errors->has('book'))
{{ $errors->first('book') }}
@endif {{ trans('cruds.note.fields.book_helper') }}
@if($errors->has('note'))
{{ $errors->first('note') }}
@endif {{ trans('cruds.note.fields.note_helper') }}
@if($errors->has('rating'))
{{ $errors->first('rating') }}
@endif {{ trans('cruds.note.fields.rating_helper') }}
@endsection @section('scripts') @endsection