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

Recharge

{!! Form::open(array('url'=>'transaction/cashfree_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::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
{!! Form::close() !!}
@endsection