mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04: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 |