BookStack/resources/views/chapters/create.blade.php

12 lines
253 B
PHP
Raw Normal View History

2015-07-27 19:17:08 +00:00
@extends('base')
@section('content')
<div class="container small">
2015-07-27 19:17:08 +00:00
<h1>Create New Chapter</h1>
<form action="{{$book->getUrl()}}/chapter/create" method="POST">
@include('chapters/form')
</form>
</div>
@stop