@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.borrow.title_singular') }}
@csrf
@if($errors->has('hardcopy'))
{{ $errors->first('hardcopy') }}
@endif {{ trans('cruds.borrow.fields.hardcopy_helper') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.borrow.fields.user_helper') }}
@if($errors->has('borrow_date'))
{{ $errors->first('borrow_date') }}
@endif {{ trans('cruds.borrow.fields.borrow_date_helper') }}
@if($errors->has('return_date'))
{{ $errors->first('return_date') }}
@endif {{ trans('cruds.borrow.fields.return_date_helper') }}
@endsection