@extends('frontend.layouts.app') @section('content')
@if(session('error'))
{{ session('error') }}
@endif
{{ $package->name }}
  • {{ $package->express_interest }} {{ translate('Express Interests') }}
  • {{ $package->photo_gallery }} {{ translate('Gallery Photo Upload') }}
  • {{ $package->contact }} {{ translate('Contact Info View') }}
  • {{ $package->profile_viewers_view }} {{ translate('Profile Viewer View') }}
  • @if (get_setting('profile_picture_privacy') == 'only_me')
  • {{ $package->profile_image_view }} {{ translate('Profile Image View') }}
  • @endif @if (get_setting('gallery_image_privacy') == 'only_me')
  • {{ $package->gallery_image_view }} {{ translate('Gallery Image View') }}
  • @endif
  • @if ($package->auto_profile_match == 0) {{ translate('Show Auto Profile Match') }} @else {{ translate('Show Auto Profile Match') }} @endif
@php $package_price = $package->price; @endphp @if ($package->id == 1) {{ translate('Free') }} @else @if (addon_activation('referral_system') && Auth::user()->referred_by != null && Auth::user()->referral_comission == 0) @php $discount_type = get_setting('referral_user_package_purchase_discount_type'); if ($discount_type == 'percent') { $discount = ($package->price * get_setting('referral_user_package_purchase_discount')) / 100; } else { $discount = get_setting('referral_user_package_purchase_discount'); } $package_price = $package_price - $discount; @endphp {{ single_price($package->price) }}
{{ single_price($package_price) }} @else {{ single_price($package_price) }} @endif @endif {{ $package->validity }} {{ translate('Days') }}
@csrf

{{ translate('Select a payment option') }}

@if (get_setting('paypal_payment_activation') == 1)
@endif @if (get_setting('stripe_payment_activation') == 1)
@endif @if (get_setting('instamojo_payment_activation') == 1)
@endif @if (get_setting('razorpay_payment_activation') == 1)
@endif @if (get_setting('paystack_payment_activation') == 1)
@endif @if (get_setting('paytm_payment_activation') == 1)
@endif @if (get_setting('aamarpay_payment_activation') == 1)
@endif @if (get_setting('sslcommerz_payment_activation') == 1)
@endif @if (get_setting('phonepe_payment_activation') == 1)
@endif @if (get_setting('wallet_system') == 1)
@endif @foreach ($manual_payments as $method)
@endforeach {{-- --}}
{{-- --}} @foreach ($manual_payments as $method)
@php echo $method->description @endphp
@if ($method->bank_info != null)
    @foreach (json_decode($method->bank_info) as $key => $info)
  • {{ translate('Bank Name') }} -{{ $info->bank_name }}
  • {{ translate('Account Name') }} - {{ $info->account_name }},
  • {{ translate('Account Number') }} -{{ $info->account_number }}
  • {{ translate('Routing Number') }} - {{ $info->routing_number }}
  • @endforeach
@endif
@endforeach
{{ translate('Browse') }}
{{ translate('Choose File') }}
@endsection @section('script') @endsection