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

16 lines
478 B
PHP
Raw Normal View History

2015-07-15 21:55:49 +00:00
{{ csrf_field() }}
<div class="form-group title-input">
<label for="name">Book Name</label>
2015-07-12 19:01:42 +00:00
@include('form/text', ['name' => 'name'])
</div>
2015-08-08 20:38:11 +00:00
2015-07-15 21:55:49 +00:00
<div class="form-group description-input">
2015-07-12 19:01:42 +00:00
<label for="description">Description</label>
@include('form/textarea', ['name' => 'description'])
</div>
2015-08-08 20:38:11 +00:00
<div class="form-group">
<a href="{{ back()->getTargetUrl() }}" class="button muted">Cancel</a>
2015-08-08 20:38:11 +00:00
<button type="submit" class="button pos">Save Book</button>
</div>