2015-07-27 15:17:08 -04:00
|
|
|
|
2015-08-08 16:38:11 -04:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
<div class="form-group title-input">
|
2016-11-17 08:33:07 -05:00
|
|
|
<label for="name">{{ trans('common.name') }}</label>
|
2015-07-27 15:17:08 -04:00
|
|
|
@include('form/text', ['name' => 'name'])
|
|
|
|
</div>
|
2015-08-08 16:38:11 -04:00
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
<div class="form-group description-input">
|
2016-11-17 08:33:07 -05:00
|
|
|
<label for="description">{{ trans('common.description') }}</label>
|
2015-07-27 15:17:08 -04:00
|
|
|
@include('form/textarea', ['name' => 'description'])
|
|
|
|
</div>
|
2015-08-08 16:38:11 -04:00
|
|
|
|
2017-08-26 09:36:48 -04:00
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ back()->getTargetUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2016-11-17 08:33:07 -05:00
|
|
|
<button type="submit" class="button pos">{{ trans('entities.chapters_save') }}</button>
|
2015-08-08 16:38:11 -04:00
|
|
|
</div>
|