mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
13 lines
363 B
PHP
13 lines
363 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<h1>{{ 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>
|
|
|
|
@stop |