{{ Form::label('first name') }} {{ Form::text('firstname') }}
{{ Form::label('last name') }} {{ Form::text('lastname') }}
{{ Form::label('username') }} {{ Form::text('username') }}
{{ Form::label('password') }} {{ Form::password('password') }}
{{ Form::label('confirm') }} {{ Form::password('confirm') }}
{{ Form::label('roomlabel') }} {{ Form::select('room', array('single' => 'single', 'double' => 'double')) }}
{{ Form::submit('register me') }}
{{ Form::close() }}