@extends('frontend.layouts.app') @section('content')
{{$package->name}}
  • {{ $package->express_interest }} {{ translate('Express Interests') }}
  • {{ $package->photo_gallery }} {{ translate('Galley Photo Upload') }}
  • {{ $package->contact }} {{ translate('Contact Info View') }}
  • @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('wallet_system') == 1)
@endif @if(get_setting('manual_payment_1_activation') == 1)
@endif @if(get_setting('manual_payment_2_activation') == 1)
@endif
@php echo get_setting('manual_payment_1_instruction') @endphp
@php echo get_setting('manual_payment_2_instruction') @endphp
{{ translate('Browse')}}
{{ translate('Choose File') }}
@endsection @section('script') @endsection