mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
13 lines
326 B
PHP
13 lines
326 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<h1>Edit Book</h1>
|
|
<form action="/books/{{$book->slug}}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('books/form', ['model' => $book])
|
|
</form>
|
|
</div>
|
|
|
|
@stop |