{{ Form::label('billnamelabel', 'billname', array('style' => 'font-size:500%'))}}
{{ Form::label('datelabel', "enter date in yyyymm") }}
{{ Form::text('date', '') }}
{{ Form::label('totallabel', 'total bill amount') }}
{{ Form::text('total', '') }}
{{ Form::label('eachlabel', 'how many people') }}
{{ Form::text('each', '') }}
{{ Form::button('add bill', array('class' => 'createbillmonthamount', 'type' => 'submit')) }}{{ Form::label('billnamelbl', 'billname') }}
{{ Form::label('payerlbl', 'payer') }}
{{ Form::label('datelabel', 'date in yyyymm') }}
{{ Form::text('date') }}
{{ Form::label('amountpaidlabel', 'amount paid') }}
{{ Form::text('amountpaid') }}
{{ Form::button('add payer', array('class' => 'addpeople', 'type' => 'submit')) }}
{{ Form::label('billnamelbl', 'billname') }}
{{ Form::label('payerlbl', 'payer') }}
{{ Form::label('idlbl', 'bill id') }}
{{ Form::label('amountpaidlabel', 'amount paid') }}
{{ Form::text('amountpaid') }}
{{ Form::button('update payer', array('class' => 'managebill', 'type' => 'submit')) }}
{{ Form::label('payerlbl', 'payer') }}
{{ Form::button('check', array('class' => 'viewdebtors', 'type' => 'submit')) }}
{!! Form::close() !!} {{ $empt = isset($payer) }} @if (!$empt) nothing @endif @if ($empt)| Payer | Billname | Amount paid | Total |
| {{ $payer }} | {{ $bills[$i] }} | {{ $amountpaids[$i] }} | {{ $totals[$i] }} |