BookStack/resources/views/books/edit.blade.php
2016-11-17 13:33:07 +00:00

13 lines
350 B
PHP

@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
<h1>{{ trans('entities.books_edit') }}</h1>
<form action="{{ $book->getUrl() }}" method="POST">
<input type="hidden" name="_method" value="PUT">
@include('books/form', ['model' => $book])
</form>
</div>
@stop