BookStack/resources/views/books/edit.blade.php

11 lines
271 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
@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