BookStack/resources/views/books/create.blade.php
2015-09-03 16:51:10 +01:00

12 lines
195 B
PHP

@extends('base')
@section('content')
<div class="container small">
<h1>Create New Book</h1>
<form action="/books" method="POST">
@include('books/form')
</form>
</div>
@stop