@php
$pricingContent = getContent('pricing.content', true);
@endphp
@extends($activeTemplate . 'layouts.master')
@section('content')
{{ __($pricingContent->data_values->subheading) }} {{ __($pricingContent->data_values->heading) }}
{{ __($plan->title) }}
@if (auth()->user() && auth()->user()->activePlan && auth()->user()->activePlan->plan_id == $plan->id)
@lang('Current Plan')
@endif
{{ $general->cur_sym . showAmount($plan->monthly_price) }}/@lang('Month')
{{ $general->cur_sym . showAmount($plan->yearly_price) }}/@lang('Year')
@guest
@else
@endguest