create.blade.php 195 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 @extends('base') @section('content') <div class="container small"> <h1>Create New Book</h1> <form action="/books" method="POST"> @include('books/form') </form> </div> @stop