@extends('header') @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
{!! Former::open('settings/change_plan')->addClass('change-plan') !!}

{!! trans('texts.plan_status') !!}

@if ($planDetails && $planDetails['active']) {{ trans('texts.plan_'.$planDetails['plan']) }} @if ($planDetails['trial']) ({{ trans('texts.plan_trial') }}) @elseif ($planDetails['expires']) ({{ trans('texts.plan_term_'.$planDetails['term'].'ly') }}) @endif @elseif(Utils::isNinjaProd()) {{ trans('texts.plan_free') }} @else {{ trans('texts.plan_free_self_hosted') }} @endif

@if ($planDetails && $planDetails['active'])

@if ($planDetails['expires'] === false) {{ trans('texts.never') }} @else {{ Utils::dateToString($planDetails['expires']) }} @endif

@if ($account->company->pending_plan)

@if ($account->company->pending_plan == PLAN_FREE) {{ trans('texts.plan_changes_to', [ 'plan'=>trans('texts.plan_free'), 'date'=>Utils::dateToString($planDetails['expires']) ]) }} @else {{ trans('texts.plan_term_changes_to', [ 'plan'=>trans('texts.plan_'.$account->company->pending_plan), 'term'=>trans('texts.plan_term_'.$account->company->pending_term.'ly'), 'date'=>Utils::dateToString($planDetails['expires']) ]) }} @endif
{{ trans('texts.cancel_plan_change') }}

@endif @if (Utils::isNinjaProd()) {!! Former::actions( Button::info(trans('texts.plan_change'))->large()->withAttributes(['onclick' => 'showChangePlan()'])->appendIcon(Icon::create('edit'))) !!} @endif @else @if ($planDetails)

{{ Utils::dateToString($planDetails['expires']) }}

@endif @if (Utils::isNinjaProd()) {!! Former::actions( Button::success(trans('texts.plan_upgrade'))->large()->withAttributes(['onclick' => 'showChangePlan()'])->appendIcon(Icon::create('plus-sign'))) !!} @elseif (!$account->hasFeature(FEATURE_WHITE_LABEL)) {!! Former::actions( Button::success(trans('texts.white_label_button'))->large()->withAttributes(['onclick' => 'loadImages("#whiteLabelModal");$("#whiteLabelModal").modal("show");'])->appendIcon(Icon::create('plus-sign'))) !!} @endif @endif
@if (Utils::isNinjaProd()) @endif {!! Former::close() !!} {!! Former::open('settings/cancel_account')->addClass('cancel-account') !!}

{!! trans('texts.cancel_account') !!}

{!! Former::actions( Button::danger(trans('texts.cancel_account'))->large()->withAttributes(['onclick' => 'showConfirm()'])->appendIcon(Icon::create('trash'))) !!}
{!! Former::close() !!}
@stop