2015-07-28 21:57:13 +02:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-12-30 22:38:20 +01:00
|
|
|
<div class="container small" ng-non-bindable>
|
2016-11-17 14:33:07 +01:00
|
|
|
<h1>{{ trans('entities.chapters_edit') }}</h1>
|
2016-08-14 13:29:35 +02:00
|
|
|
<form action="{{ $chapter->getUrl() }}" method="POST">
|
2015-07-28 21:57:13 +02:00
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@include('chapters/form', ['model' => $chapter])
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|