BookStack/resources/views/books/edit.blade.php
2015-07-12 20:01:42 +01:00

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