1 @extends('simple-layout')
4 <div class="container small">
6 @if (isset($bookshelf))
7 @include('partials.breadcrumbs', ['crumbs' => [
9 $bookshelf->getUrl('/create-book') => [
10 'text' => trans('entities.books_create'),
15 @include('partials.breadcrumbs', ['crumbs' => [
17 'text' => trans('entities.books'),
21 'text' => trans('entities.books_create'),
28 <div class="content-wrap card">
29 <h1 class="list-heading">{{ trans('entities.books_create') }}</h1>
30 <form action="{{ isset($bookshelf) ? $bookshelf->getUrl('/create-book') : baseUrl('/books') }}" method="POST" enctype="multipart/form-data">
31 @include('books.form')