mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
43d9d2eba7
Allows BookStack to be installed at a non-root location on a domain. Closes #40.
13 lines
338 B
PHP
13 lines
338 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<h1>Edit Chapter</h1>
|
|
<form action="{{ $chapter->getUrl() }}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('chapters/form', ['model' => $chapter])
|
|
</form>
|
|
</div>
|
|
|
|
@stop |