mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
11 lines
363 B
PHP
11 lines
363 B
PHP
|
|
||
|
{{ csrf_field() }}
|
||
|
<div class="form-group title-input">
|
||
|
<label for="name">Chapter Name</label>
|
||
|
@include('form/text', ['name' => 'name'])
|
||
|
</div>
|
||
|
<div class="form-group description-input">
|
||
|
<label for="description">Description</label>
|
||
|
@include('form/textarea', ['name' => 'description'])
|
||
|
</div>
|
||
|
<button type="submit" class="button pos">Save</button>
|