Recharge
{!! Form::open(array('url'=>'transaction/cashfree_processing', 'files'=>true)) !!}
{{ csrf_field() }}
{!! Form::close() !!}
{!! Form::label('amount', 'Amount') !!}
{!! Form::text('amount', null, ['class' => 'form-control rounded', 'maxlength' => '10']) !!}
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
{!! Form::label('note', 'Note') !!}
{!! Form::text('note', null, ['class' => 'form-control rounded', 'maxlength' => '10']) !!}
@if ($errors->has('note'))
{{ $errors->first('note') }}
@endif
{!! Form::label('phone', 'Phone No.') !!}
{!! Form::text('phone', null, ['class' => 'form-control rounded', 'maxlength' => '10']) !!}
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif