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

12 lines
279 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>{{ trans('entities.books_create') }}</h1>
2017-06-29 09:24:04 -04:00
<form action="{{ baseUrl("/books") }}" method="POST" enctype="multipart/form-data">
@include('books/form')
</form>
</div>
2015-07-15 17:55:49 -04:00
2015-07-12 15:01:42 -04:00
@stop