2017-08-26 14:24:55 +02:00
|
|
|
@extends('simple-layout')
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2017-08-26 14:24:55 +02:00
|
|
|
@section('body')
|
2018-12-09 17:51:31 +01: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 14:24:55 +02:00
|
|
|
|
2018-12-09 17:51:31 +01:00
|
|
|
<div class="content-wrap card">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.books_create') }}</h1>
|
2017-08-29 08:49:00 +02:00
|
|
|
<form action="{{ baseUrl("/books") }}" method="POST" enctype="multipart/form-data">
|
2017-08-26 14:24:55 +02:00
|
|
|
@include('books/form')
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-09 17:51:31 +01:00
|
|
|
|
2017-07-12 08:10:50 +02:00
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
2015-07-12 21:01:42 +02:00
|
|
|
@stop
|