mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
24 lines
689 B
PHP
24 lines
689 B
PHP
@extends('simple-layout')
|
|
|
|
@section('toolbar')
|
|
<div class="col-sm-12 faded">
|
|
@include('chapters._breadcrumbs', ['chapter' => $chapter])
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<p> </p>
|
|
<div class="card">
|
|
<h3><i class="zmdi zmdi-edit"></i> {{ trans('entities.chapters_edit') }}</h3>
|
|
<div class="body">
|
|
<form action="{{ $chapter->getUrl() }}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('chapters/form', ['model' => $chapter])
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop |