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

{{ Form::button('user home', array('class' => 'userhome', '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') }}

{{ Form::text('billname', '') }}

{{ Form::button('Create Bill', array('class' => 'createbill', 'type' => 'submit')) }}

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

{{$message}}