@extends("frontend.layout.master") @section('title','Emart | Add Money') @section("content")

Add {{ $amount }} via


@if($configs->paypal_enable == 1)
@csrf
@endif @if($configs->instamojo_enable == 1)
@csrf
@endif @if($configs->paytm_enable == 1)
@csrf
@endif @if($configs->razorpay == 1)
@endif @if($configs->braintree_enable == 1)

Pay {{ $amount }} with Braintree
{{ csrf_field() }}
@endif
@if($configs->stripe_enable == 1)

{{ __('Pay') }}   {{ $amount }} (Stripe)


@csrf
@if ($errors->has('number')) {{ $errors->first('number') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('expiry')) {{ $errors->first('expiry') }} @endif
@if ($errors->has('cvc')) {{ $errors->first('cvc') }} @endif
@endif
@endsection