Purchase Subscription

@if(isset($plans)) @foreach($plans as $plan)

{{ $plan->name }} @if(!$plan->monthly_billing) 2 Months Free @endif

${{ $plan->price }} /{{ $plan->monthly_billing ? 'month' : 'year' }}

    @if($plan->details) @forelse ($plan->details as $key => $value) @if ($value)
  • @if($value == "true") @else @endif {{ $key }}
  • @endif @empty @endforelse @endif
@if($plan->accept_stripe && $plan->pricing_id !== null) Pay with card @endif @if($plan->accept_shoppy && $plan->shoppy_product_id !== null) Pay with crypto @endif
@endforeach @endif

Have an Activation Key?

Redeem your activation key, purchased with Pay with Crypto option.
@error('activation_key')
{{ $message }}
@enderror @if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif