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

13 lines
363 B
PHP
Raw Normal View History

@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