Recharge
{!! Form::open(array('url'=>'transaction/recharge_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