BookStack/resources/views/books/create.blade.php
2017-06-29 18:54:04 +05:30

12 lines
279 B
PHP

@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
<h1>{{ trans('entities.books_create') }}</h1>
<form action="{{ baseUrl("/books") }}" method="POST" enctype="multipart/form-data">
@include('books/form')
</form>
</div>
@stop