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

12 lines
249 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_create') }}</h1>
<form action="{{ baseUrl("/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