@extends('layouts.master') @section('content')

Create a New List

{!! Form::open(array('route' => 'lists.store', 'class' => 'form')) !!}
{!! Form::label('List Name') !!} {!! Form::text('name', null, array('required', 'class'=>'form-control', 'placeholder'=>'San Juan Vacation')) !!}
{!! Form::label('List Description') !!} {!! Form::textarea('description', null, array('required', 'class'=>'form-control', 'placeholder'=>'Things to do before leaving for vacation')) !!}
{!! Form::submit('Create List', array('class'=>'btn btn-primary')) !!}