1 @extends('layouts.simple')
5 <div class="container small">
8 @include('entities.breadcrumbs', ['crumbs' => [
10 $book->getUrl('/copy') => [
11 'text' => trans('entities.books_copy'),
17 <div class="card content-wrap auto-height">
19 <h1 class="list-heading">{{ trans('entities.books_copy') }}</h1>
21 <form action="{{ $book->getUrl('/copy') }}" method="POST">
24 <div class="form-group title-input">
25 <label for="name">{{ trans('common.name') }}</label>
26 @include('form.text', ['name' => 'name'])
29 @include('entities.copy-considerations')
31 <div class="form-group text-right">
32 <a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
33 <button type="submit" class="button">{{ trans('entities.books_copy') }}</button>