2017-08-26 15:36:48 +02:00
|
|
|
@extends('simple-layout')
|
2015-07-27 21:17:08 +02:00
|
|
|
|
2017-08-26 15:36:48 +02:00
|
|
|
@section('body')
|
2018-05-28 11:33:38 +02:00
|
|
|
<div class="container small">
|
2019-01-31 21:37:12 +01:00
|
|
|
|
2019-02-17 18:52:42 +01:00
|
|
|
<div class="my-s">
|
2019-01-31 21:37:12 +01:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$book,
|
2019-02-17 18:52:42 +01:00
|
|
|
$book->getUrl('create-chapter') => [
|
|
|
|
'text' => trans('entities.chapters_create'),
|
|
|
|
'icon' => 'add',
|
|
|
|
]
|
2019-01-31 21:37:12 +01:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 16:44:51 +02:00
|
|
|
<main class="content-wrap card">
|
2019-01-31 21:37:12 +01:00
|
|
|
<h1 class="list-heading">{{ trans('entities.chapters_create') }}</h1>
|
|
|
|
<form action="{{ $book->getUrl('/create-chapter') }}" method="POST">
|
2019-04-07 13:00:09 +02:00
|
|
|
@include('chapters.form')
|
2019-01-31 21:37:12 +01:00
|
|
|
</form>
|
2019-08-25 16:44:51 +02:00
|
|
|
</main>
|
2015-07-27 21:17:08 +02:00
|
|
|
|
2019-01-31 21:37:12 +01:00
|
|
|
</div>
|
2015-07-27 21:17:08 +02:00
|
|
|
@stop
|