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

13 lines
350 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
@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>
2015-07-15 21:55:49 +00:00
</div>
2015-07-12 19:01:42 +00:00
@stop