@extends("_master")
@section("title")
Welcome to Foobooks
@stop
@section("head")
@stop
@section("content")
Welcome to Foobooks
{{ Form::open(array('url' => '/list', 'method' => 'GET')) }}
{{ Form::label('query','Search') }}
{{ Form::text('query'); }}
{{ Form::submit('Search'); }}
{{ Form::close() }}
@stop