-{{ csrf_field() }}
+{!! csrf_field() !!}
+
<div class="form-group title-input">
- <label for="name">Chapter Name</label>
+ <label for="name">{{ trans('common.name') }}</label>
@include('form/text', ['name' => 'name'])
</div>
+
<div class="form-group description-input">
- <label for="description">Description</label>
+ <label for="description">{{ trans('common.description') }}</label>
@include('form/textarea', ['name' => 'description'])
</div>
-<button type="submit" class="button pos">Save</button>
\ No newline at end of file
+
+<div class="form-group">
+ <a href="{{ back()->getTargetUrl() }}" class="button muted">{{ trans('common.cancel') }}</a>
+ <button type="submit" class="button pos">{{ trans('entities.chapters_save') }}</button>
+</div>