BookStack/resources/views/chapters/edit.blade.php

28 lines
786 B
PHP
Raw Normal View History

2017-08-26 13:36:48 +00:00
@extends('simple-layout')
2017-08-26 13:36:48 +00:00
@section('body')
<div class="container small">
2019-01-31 20:37:12 +00:00
<div class="my-s">
2019-01-31 20:37:12 +00:00
@include('partials.breadcrumbs', ['crumbs' => [
$book,
$chapter,
$chapter->getUrl('/edit') => [
'text' => trans('entities.chapters_edit'),
'icon' => 'edit'
]
2019-01-31 20:37:12 +00:00
]])
2017-08-26 13:36:48 +00:00
</div>
2019-01-31 20:37:12 +00:00
<main class="content-wrap card">
2019-01-31 20:37:12 +00:00
<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])
2019-01-31 20:37:12 +00:00
</form>
</main>
2019-01-31 20:37:12 +00:00
</div>
@stop