@extends('_master')
@section('title')
Sign Up
@stop
@section('content')
Sign Up
@foreach($errors->all() as $message)
{{ $message }}
@endforeach
{{ Form::open(array('url' => '/signup')) }}
{{ Form::label('First Name') }}
{{ Form::text('first_name') }}
{{ Form::label('Last Name') }}
{{ Form::text('last_name') }}
{{ Form::label('Email Address') }}
{{ Form::text('email') }}
{{ Form::label('Password') }}
{{ Form::password('password') }}
Minimum 6 characters
{{ Form::submit('Submit') }}
{{ Form::close() }}
@stop