@extends('layouts.app') @section('content')
@include('layouts.includes.header')

Recharge

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