@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.book.title_singular') }}
@csrf
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.book.fields.code_helper') }}
@if($errors->has('cover_image'))
{{ $errors->first('cover_image') }}
@endif {{ trans('cruds.book.fields.cover_image_helper') }}
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.book.fields.title_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('categories'))
{{ $errors->first('categories') }}
@endif {{ trans('cruds.book.fields.category_helper') }}
@if($errors->has('author'))
{{ $errors->first('author') }}
@endif {{ trans('cruds.book.fields.author_helper') }}
@if($errors->has('publisher'))
{{ $errors->first('publisher') }}
@endif {{ trans('cruds.book.fields.publisher_helper') }}
@if($errors->has('year'))
{{ $errors->first('year') }}
@endif {{ trans('cruds.book.fields.year_helper') }}
@if($errors->has('excerpt'))
{{ $errors->first('excerpt') }}
@endif {{ trans('cruds.book.fields.excerpt_helper') }}
@if($errors->has('table_of_content'))
{{ $errors->first('table_of_content') }}
@endif {{ trans('cruds.book.fields.table_of_content_helper') }}
@if($errors->has('keywords'))
{{ $errors->first('keywords') }}
@endif {{ trans('cruds.book.fields.keywords_helper') }}
@if($errors->has('language'))
{{ $errors->first('language') }}
@endif {{ trans('cruds.book.fields.language_helper') }}
@if($errors->has('pages'))
{{ $errors->first('pages') }}
@endif {{ trans('cruds.book.fields.pages_helper') }}
@if($errors->has('version'))
{{ $errors->first('version') }}
@endif {{ trans('cruds.book.fields.version_helper') }}
@if($errors->has('is_editor_choice'))
{{ $errors->first('is_editor_choice') }}
@endif {{ trans('cruds.book.fields.is_editor_choice_helper') }}
@if($errors->has('is_hardcopy'))
{{ $errors->first('is_hardcopy') }}
@endif {{ trans('cruds.book.fields.is_hardcopy_helper') }}
@if($errors->has('is_ebook'))
{{ $errors->first('is_ebook') }}
@endif {{ trans('cruds.book.fields.is_ebook_helper') }}
@if($errors->has('file_url'))
{{ $errors->first('file_url') }}
@endif {{ trans('cruds.book.fields.file_url_helper') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.book.fields.user_helper') }}
@endsection @section('scripts') @endsection