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">
|
|
|
|
<label for="name">Chapter Name</label>
|
|
|
|
@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">
|
|
|
|
<label for="description">Description</label>
|
|
|
|
@include('form/textarea', ['name' => 'description'])
|
|
|
|
</div>
|
2015-08-08 16:38:11 -04:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<a onclick="window.history.back();" class="button muted">Cancel</a>
|
|
|
|
<button type="submit" class="button pos">Save</button>
|
|
|
|
</div>
|