{{ Form::label('firstnamelabel', 'first name') }}
{{ Form::text('firstname', '') }}
{{ Form::label('lastnamelabel', 'last name') }}
{{ Form::text('lastname', '') }}
{{ Form::label('usernamelabel', 'username') }}
{{ Form::text('username', '') }}
{{ Form::label('passwordlabel', 'password') }}
{{ Form::password('password') }}
{{ Form::label('confirmlabel', 'confirm') }}
{{ Form::password('confirm') }}
{{ Form::label('roomlabel', 'room') }}
{{ Form::submit('register me', array('class' => 'registeraccount')) }}