Home

Registration Page


{{ Form::open(array('action' => 'HomeController@registerUser', 'method' => 'post')) }}

{{ Form::label('firstnamelabel', 'first name', array('style' => 'width:60%;height:20%;font-size:500%')) }}
{{ Form::text('firstname', '', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::label('lastnamelabel', 'last name', array('style' => 'width:60%;height:20%;font-size:500%')) }}
{{ Form::text('lastname', '', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::label('usernamelabel', 'username', array('style' => 'width:60%;height:20%;font-size:500%')) }}
{{ Form::text('username', '', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::label('passwordlabel', 'password', array('style' => 'width:60%;height:20%;font-size:500%')) }}
{{ Form::password('password', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::label('confirmlabel', 'confirm', array('style' => 'width:60%;height:20%;font-size:500%')) }}
{{ Form::password('confirm', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::label('roomlabel', 'room', array('style' => 'width:60%;height:20%;font-size:500%')) }}


{{ Form::submit('register me', array('style' => 'width:70%;height:25%;font-size:500%')) }}

{{ Form::close() }}

{{ $message }}