1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-10-30 23:52:40 +01:00
BookStack/resources/views/books/create.blade.php

12 lines
211 B
PHP

@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>
@stop