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

24 lines
693 B
PHP
Raw Normal View History

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