@extends('layouts.app') @section('content')
@if(session('error'))
{{ session('error') }}
@endif

Secure Payment

@guest

Our servers are fully encrypted at rest with AES-256 and all connections are secured with TLS 1.2+. All sensitive data is handled securely and in compliance with industry standards. We employ strict access controls and regular security audits to ensure your information is protected.

Upon completing your purchase an account will be created for you to manage your subscription and downloads. After purchase, check your email for details and instructions on how to retrieve your purchases.

@endguest
@csrf @guest
@else @php $fullName = Auth::user()->name ?? ''; $nameParts = preg_split('/\s+/', $fullName, 2, PREG_SPLIT_NO_EMPTY); $firstPart = $nameParts[0] ?? ''; $lastPart = $nameParts[1] ?? ''; $hasAddress = !empty($prefill['address']) && !empty($prefill['city']) && !empty($prefill['country']); @endphp

Welcome back {{ $firstPart ?: Auth::user()->email }}, you will have access to your plugin download(s) immediately.

@if($hasAddress)

Billing Address

{{ $prefill['address'] }}
{{ $prefill['city'] }}, {{ $prefill['postal_code'] }}

@endif @endguest @guest
@endguest @if(!empty($cartItems) && $cartItems->count())
Order Summary
@foreach($cartItems as $item) @php $itemQty = max(1, (int)($item->getQuantity() ?: $item->quantity ?? 1)); $monthly = $item->price * $itemQty; $yearlyTotal = $monthly * 10; $yearlyPerMonth = $yearlyTotal / 12; @endphp @endforeach
Product Qty Monthly Yearly per month
{{ $item->product->name ?? $item->name }} {{ $itemQty }} ${{ number_format($monthly, 2) }} ${{ number_format($yearlyPerMonth, 2) }}
saves ${{ number_format($total * 2, 2) }}/yr
@endif
Save This Year: ${{ number_format($total * 2, 2) }}
  • Access to all plugin updates and upgrades
  • Priority support for issues and questions
  • Cancel anytime, no long-term commitment
  • Early access to new features and plugins

We do not store or reproduce any secure payment details. All payments are processed through Stripe's PCI-compliant infrastructure, ensuring your data is protected with industry-leading security measures.

powered by Stripe
@endsection @push('scripts') @endpush