Alright {{ $username }}, here is where you can manage the bills you own bills

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

{{ Form::button('user Home', array('style' => 'height:40%;width:70%', 'type' => 'submit')) }}

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

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

{{ Form::button('Create Bill', array('style' => 'height:40%;width:70%', 'type' => 'submit')) }}

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