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

12 lines
192 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
@extends('base')
@section('content')
<div class="page-content">
<h1>Create New Book</h1>
<form action="/books" method="POST">
@include('books/form')
</form>
</div>
2015-07-15 21:55:49 +00:00
2015-07-12 19:01:42 +00:00
@stop