@extends('layouts.app') @section('title', __('master::lang.purchase_more_users')) @section('content')
@component('components.widget')

@lang('master::lang.purchase_more_users')

@if(!empty($latest))

@lang('master::lang.subscription_type'): {{ $latest->billing_cycle === 'yearly' ? __('master::lang.yearly') : __('master::lang.monthly') }}

@lang('master::lang.subscription_end_date'): {{ $latest->end_date ? @format_date($latest->end_date) : __('lang_v1.na') }}

@lang('master::lang.current_subscription_users'): {{ $latest->users_count }}

@lang('master::lang.subscription_price_after_discount'): {{ number_format($latest->price_after_discount ?? $latest->total_price, 2) }} @lang('master::lang.currency')

@else
@lang('master::lang.no_active_subscription')
@endif
@csrf
0 @lang('master::lang.currency')
@lang('master::lang.cancel')

@lang('master::lang.purchase_more_note')

@endcomponent
@endsection @section('javascript') @endsection