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-01-13 10:54:55 -05:00
|
|
|
<div class="my-l">
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
'/books' => trans('entities.books'),
|
|
|
|
'/create-book' => trans('entities.books_create')
|
|
|
|
]])
|
2018-12-09 11:51:31 -05:00
|
|
|
</div>
|
2017-08-26 08:24:55 -04:00
|
|
|
|
2018-12-09 11:51:31 -05:00
|
|
|
<div class="content-wrap card">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.books_create') }}</h1>
|
2017-08-29 02:49:00 -04:00
|
|
|
<form action="{{ baseUrl("/books") }}" method="POST" enctype="multipart/form-data">
|
2017-08-26 08:24:55 -04:00
|
|
|
@include('books/form')
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-09 11:51:31 -05:00
|
|
|
|
2017-07-12 02:10:50 -04:00
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|