2017-08-26 21:36:48 +08:00
|
|
|
@extends('simple-layout')
|
2015-07-28 03:17:08 +08:00
|
|
|
|
2017-08-26 21:36:48 +08:00
|
|
|
@section('body')
|
2018-05-28 17:33:38 +08:00
|
|
|
<div class="container small">
|
2019-02-01 04:37:12 +08: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 21:36:48 +08:00
|
|
|
</div>
|
2015-07-28 03:17:08 +08:00
|
|
|
|
2019-02-01 04:37:12 +08:00
|
|
|
</div>
|
2015-07-28 03:17:08 +08:00
|
|
|
@stop
|