create.blade.php 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 @extends('base') @section('content') <h2>New Book</h2> <form action="/books" method="POST"> {{ csrf_field() }} @include('books/form') </form> @stop