@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.hardcopy.title_singular') }}
@csrf
@if($errors->has('book'))
{{ $errors->first('book') }}
@endif {{ trans('cruds.hardcopy.fields.book_helper') }}
@if($errors->has('owner'))
{{ $errors->first('owner') }}
@endif {{ trans('cruds.hardcopy.fields.owner_helper') }}
@foreach(App\Models\Hardcopy::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.hardcopy.fields.status_helper') }}
@endsection