@extends("front.layout.master") @section('title','Pay '.session()->get('currency')['id'].$amount.' | ') @section("body")

{{ __('staticwords.ADD') }}   {{ $amount }} {{ __('staticwords.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)

{{ __('staticwords.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 @section('script') @endsection