2017-08-26 08:24:55 -04:00
|
|
|
@extends('simple-layout')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
@section('body')
|
2018-12-09 11:51:31 -05:00
|
|
|
<div class="container small">
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-04-15 05:56:21 -04:00
|
|
|
@if (isset($bookshelf))
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$bookshelf,
|
|
|
|
$bookshelf->getUrl('/create-book') => [
|
|
|
|
'text' => trans('entities.books_create'),
|
|
|
|
'icon' => 'add'
|
|
|
|
]
|
|
|
|
]])
|
|
|
|
@else
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
'/books' => [
|
|
|
|
'text' => trans('entities.books'),
|
|
|
|
'icon' => 'book'
|
|
|
|
],
|
|
|
|
'/create-book' => [
|
|
|
|
'text' => trans('entities.books_create'),
|
|
|
|
'icon' => 'add'
|
|
|
|
]
|
|
|
|
]])
|
|
|
|
@endif
|
2018-12-09 11:51:31 -05:00
|
|
|
</div>
|
2017-08-26 08:24:55 -04:00
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="content-wrap card">
|
2018-12-09 11:51:31 -05:00
|
|
|
<h1 class="list-heading">{{ trans('entities.books_create') }}</h1>
|
2019-08-04 09:26:39 -04:00
|
|
|
<form action="{{ isset($bookshelf) ? $bookshelf->getUrl('/create-book') : url('/books') }}" method="POST" enctype="multipart/form-data">
|
2019-10-27 12:55:05 -04:00
|
|
|
@include('books.form', ['returnLocation' => isset($bookshelf) ? $bookshelf->getUrl() : url('/books')])
|
2017-08-26 08:24:55 -04:00
|
|
|
</form>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2018-12-09 11:51:31 -05:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|