]> BookStack Code Mirror - bookstack/blob - resources/views/chapters/edit.blade.php
Add feature to send test e-mails
[bookstack] / resources / views / chapters / edit.blade.php
1 @extends('simple-layout')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-s">
8             @include('partials.breadcrumbs', ['crumbs' => [
9                 $book,
10                 $chapter,
11                 $chapter->getUrl('/edit') => [
12                     'text' => trans('entities.chapters_edit'),
13                     'icon' => 'edit'
14                 ]
15             ]])
16         </div>
17
18         <main class="content-wrap card">
19             <h1 class="list-heading">{{ trans('entities.chapters_edit') }}</h1>
20             <form action="{{  $chapter->getUrl() }}" method="POST">
21                 <input type="hidden" name="_method" value="PUT">
22                 @include('chapters.form', ['model' => $chapter])
23             </form>
24         </main>
25
26     </div>
27
28 @stop