create.blade.php 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 @extends('base') @section('content') <div class="page-content"> <h1>Create New Chapter</h1> <form action="{{$book->getUrl()}}/chapter/create" method="POST"> @include('chapters/form') </form> </div> @stop