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