mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 01:45:54 +08:00
11 lines
271 B
PHP
11 lines
271 B
PHP
|
@extends('base')
|
||
|
|
||
|
@section('content')
|
||
|
<h2>Edit Book</h2>
|
||
|
|
||
|
<form action="/books/{{$book->slug}}" method="POST">
|
||
|
{{ csrf_field() }}
|
||
|
<input type="hidden" name="_method" value="PUT">
|
||
|
@include('books/form', ['model' => $book])
|
||
|
</form>
|
||
|
@stop
|