@extends('frontend.user.layouts.auth') @section('title', lang('Pricing plans')) @section('bg', 'bg-light') @section('content')
@if (request()->input('st') == 'subscribe')

{{ lang('Choose your plan to complete the subscription', 'user') }}

@else

{{ lang('Pricing plans') }}

@endif
@if (count($lifetimePlans) > 0 || count($yearlyPlans) > 0)
{{ lang('Monthly', 'plans') }} {{ lang('Yearly', 'plans') }} @if (count($lifetimePlans) > 0) {{ lang('Lifetime', 'plans') }} @endif
@endif
@include('frontend.includes.plans')
@endsection