{!! Form::open(array('action' => 'HomeController@home')) !!} {{ Form::hidden('username', $username) }}

{{ Form::button('user home', array('style' => 'height:15%;width:100%;font-size:500%;background-color:#000000;color:#eee', 'type' => 'submit')) }}

{!! Form::close() !!}

Alright {{ $username }}, here is where you can create bills


{!! Form::open(array('action' => 'BillController@createbill')) !!} {{ Form::hidden('username', $username) }}

{{ Form::label('lbl', 'bill name', array('style' => 'font-size:500%')) }}

{{ Form::text('billname', '', array('style' => 'width:70%;height:15%;font-size:500%')) }}

{{ Form::button('Create Bill', array('style' => 'height:20%;width:70%;font-size:500%', 'type' => 'submit')) }}

{!! Form::close() !!}

{{$message}}