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

13 lines
382 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>
2017-07-12 06:10:50 +00:00
<form action="{{ baseUrl("/books") }}" method="POST" enctype="multipart/form-data">
@include('books/form')
</form>
</div>
2017-07-12 06:10:50 +00:00
<p class="margin-top large"><br></p>
@include('components.image-manager', ['imageType' => 'cover'])
2015-07-12 19:01:42 +00:00
@stop