BookStack/resources/views/chapters/create.blade.php
2016-11-17 13:33:07 +00:00

12 lines
294 B
PHP

@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
<h1>{{ trans('entities.chapters_create') }}</h1>
<form action="{{ $book->getUrl('/chapter/create') }}" method="POST">
@include('chapters/form')
</form>
</div>
@stop