{{ __('Your membership is expired. Please purchase a new package / extend the current package.') }}
@endif
@else
@if ($package_count >= 2)
@if ($next_membership->status == 0)
{{ __('You have requested a package which needs an action (Approval / Rejection) by Admin. You will be notified via mail once an action is taken.') }}
@elseif ($next_membership->status == 1)
{{ __('You have another package to activate after the current package expires. You cannot purchase / extend any package, until the next package is activated') }}
@endif
@endif
{{ __('Current Package:') }} {{ __($current_package->title) }}
{{ __($current_package->term) }}
@if ($current_membership->is_trial == 1)
({{ __('Expire Date:') }}
{{ Carbon\Carbon::parse($current_membership->expire_date)->format('jS M ,Y') }})
{{ __('Trial') }}
@else
({{ __('Expire Date:') }}
{{ $current_package->term === 'lifetime' ? __('Lifetime') : Carbon\Carbon::parse($current_membership->expire_date)->format('jS M ,Y') }})
@endif
@if ($package_count >= 2)