@extends("front/layout.master") @section('title','Seller Plans |') @section("body")
@if(Cookie::get('discount') != '')
@csrf
{{ sprintf("%.2f",currency(Cookie::get('discount'), $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }} {{__("discount applied successfully !")}}
@endif
{{ __("Have a voucher apply here") }}
@csrf
@error('code') {{$message}} @enderror
@if(Cookie::get('discount') != '0' && sprintf("%.2f",currency($plan->price, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) != sprintf("%.2f",currency(Cookie::get('discount') ?? 0, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false))) @if($configs->paytm_enable == 1)
{{ __("staticwords.Pay") }} {{ sprintf("%.2f",currency($plan->price - Cookie::get('discount') ?? 0, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }} {{__("with")}} {{__("PAYTM")}}

{{ __("Netbanking, Debit/Credit Card, Paytm wallet, UPI available") }}

paytm.png
@csrf
@endif @if($configs->stripe_enable == 1)
{{ __("staticwords.Pay") }} {{ sprintf("%.2f",currency($plan->price - Cookie::get('discount') ?? 0, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }} {{__("with")}} {{__("STRIPE")}}

{{ __("Pay via any credit card.") }}

@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
stripe.png
@endif @if($configs->razorpay == 1)
{{ __("staticwords.Pay") }} {{ sprintf("%.2f",currency($plan->price - Cookie::get('discount') ?? 0, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }} {{__("with")}} {{__("RAZORPAY")}}

{{ __("Netbanking, Debit/Credit Card, Amazonpay, Wallet, UPI available") }}

razorpay.png
@endif @if($configs->paypal_enable == 1)
{{ __("staticwords.Pay") }} {{ sprintf("%.2f",currency($plan->price - Cookie::get('discount') ?? 0, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }} {{__("with")}} {{__("PAYPAL")}}

{{ __("Debit/Credit Card, Wallet available") }}

paypal.png
@csrf
@endif @else
@csrf
@endif

@endsection @section('script') @endsection