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">
|
|
|
|
<div class="breadcrumbs my-l">
|
|
|
|
<a href="{{ baseUrl('/books') }}" class="">
|
|
|
|
@icon('book'){{ trans('entities.books') }}
|
|
|
|
</a>
|
|
|
|
<div class="separator">@icon('chevron-right')</div>
|
|
|
|
<a href="{{ baseUrl('/create-book') }}" class="">
|
|
|
|
@icon('add'){{ trans('entities.books_create') }}
|
|
|
|
</a>
|
|
|
|
</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
|