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

12 lines
211 B
PHP
Raw Normal View History

2015-07-12 15:01:42 -04:00
@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
<h1>Create New Book</h1>
<form action="/books" method="POST">
@include('books/form')
</form>
</div>
2015-07-15 17:55:49 -04:00
2015-07-12 15:01:42 -04:00
@stop