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

20 lines
705 B
PHP
Raw Normal View History

2015-07-15 17:55:49 -04:00
{{ csrf_field() }}
<div class="form-group title-input">
<label for="name">{{ trans('common.name') }}</label>
2015-07-12 15:01:42 -04:00
@include('form/text', ['name' => 'name'])
</div>
2015-08-08 16:38:11 -04:00
2015-07-15 17:55:49 -04:00
<div class="form-group description-input">
<label for="description">{{ trans('common.description') }}</label>
2015-07-12 15:01:42 -04:00
@include('form/textarea', ['name' => 'description'])
</div>
2015-08-08 16:38:11 -04:00
2017-06-29 09:24:04 -04:00
<div class="form-group">
<label for="image">Choose image</label>
<input type="file" name="image">
</div>
2015-08-08 16:38:11 -04:00
<div class="form-group">
<a href="{{ isset($book) ? $book->getUrl() : baseUrl('/books') }}" class="button muted">{{ trans('common.cancel') }}</a>
<button type="submit" class="button pos">{{ trans('entities.books_save') }}</button>
2015-08-08 16:38:11 -04:00
</div>