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