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

21 lines
603 B
PHP
Raw Normal View History

2017-08-26 13:36:48 +00:00
@extends('simple-layout')
2015-07-27 19:17:08 +00:00
2017-08-26 13:36:48 +00:00
@section('body')
<div class="container small">
2019-01-31 20:37:12 +00:00
<div class="my-l">
@include('partials.breadcrumbs', ['crumbs' => [
$book,
$book->getUrl('create-chapter') => trans('entities.chapters_create')
]])
</div>
<div class="content-wrap card">
<h1 class="list-heading">{{ trans('entities.chapters_create') }}</h1>
<form action="{{ $book->getUrl('/create-chapter') }}" method="POST">
@include('chapters/form')
</form>
2017-08-26 13:36:48 +00:00
</div>
2015-07-27 19:17:08 +00:00
2019-01-31 20:37:12 +00:00
</div>
2015-07-27 19:17:08 +00:00
@stop