mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 08:32:52 +01:00
28 lines
784 B
PHP
28 lines
784 B
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
|
|
<div class="my-s">
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
$book,
|
|
$chapter,
|
|
$chapter->getUrl('/edit') => [
|
|
'text' => trans('entities.chapters_edit'),
|
|
'icon' => 'edit'
|
|
]
|
|
]])
|
|
</div>
|
|
|
|
<div class="content-wrap card">
|
|
<h1 class="list-heading">{{ trans('entities.chapters_edit') }}</h1>
|
|
<form action="{{ $chapter->getUrl() }}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('chapters.form', ['model' => $chapter])
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop |