@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.search.title_singular') }}
@csrf
@if($errors->has('book'))
{{ $errors->first('book') }}
@endif {{ trans('cruds.search.fields.book_helper') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.search.fields.user_helper') }}
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.search.fields.code_helper') }}
@if($errors->has('queue'))
{{ $errors->first('queue') }}
@endif {{ trans('cruds.search.fields.queue_helper') }}
@endsection