@extends('layouts.app') @section('page-header') @endsection @section('content')
User Avatar

{{ auth()->user()->name }}

{{ auth()->user()->job_role }}

{{ __('Personal Details') }}

{{ __('Full Name') }} {{ auth()->user()->name }}
{{ __('Email') }} {{ auth()->user()->email }}
{{ __('Referral ID') }} {{ auth()->user()->referral_id }}
{{ __('Job Role') }} {{ auth()->user()->job_role }}
{{ __('Company') }} {{ auth()->user()->company }}
{{ __('Website') }} {{ auth()->user()->website }}
{{ __('City') }} {{ auth()->user()->city }}
{{ __('Country') }} {{ auth()->user()->country }}
{{ __('Phone') }} {{ auth()->user()->phone_number }}

{{ __('Words Generated') }}

{{ number_format($data['words']) }} {{ __('words') }}

{{ __('Images Created') }}

{{ number_format($data['images']) }} {{ __('images') }}

{{ __('Subscription') }}

@if ($user_subscription == '')

{{ __('Free Trial') }}

{{ __('No Subscription') }} / {!! config('payment.default_system_currency_symbol') !!}0.00 {{ __('Per Month') }}
@else

@if ($user_subscription->payment_frequency == 'monthly') {{ __('Monthly Subscription') }} @else {{ __('Yearly Subscription') }} @endif

{{ $user_subscription->plan_name }} {{ __('Plan') }} / {!! config('payment.default_system_currency_symbol') !!}{{ $user_subscription->price }} @if ($user_subscription->payment_frequency == 'monthly') {{ __('Per Month') }} @else {{ __('Per Year') }} @endif
@endif
@if ($user_subscription == '') {{ __('Total words available via subscription plan') }} {{ number_format(auth()->user()->available_words) }}. {{ __('Total prepaid words available ') }} {{ number_format(auth()->user()->available_words_prepaid) }}. @else {{ __('Total words available via subscription plan') }} {{ number_format(auth()->user()->available_words) }} {{ __('out of') }} {{ number_format(auth()->user()->total_words) }}. {{ __('Total prepaid words available') }} {{ number_format(auth()->user()->available_words_prepaid) }}. @endif
@if ($subscription)
{{ __('Subscription renewal date') }}: {{ $subscription->active_until }}
@endif

{{ __('Words & Images Generated') }} ({{ __('Current Year') }})

@endsection @section('js') @endsection