@extends('layouts.app') @section('css') @endsection @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 }} {{ __('Edit') }}
{{ __('Referral Link') }} {{ config('app.url') }}/?ref={{ 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 }}

{{ __('Documents Created') }}

{{ number_format($data['contents']) }} {{ __('documents') }}

{{ __('Words Generated') }}

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

@role('user|subscriber|admin') @if (config('settings.image_feature_user') == 'allow')

{{ __('Images Created') }}

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

@endif @endrole @role('user|subscriber|admin') @if (config('settings.voiceover_feature_user') == 'allow')

{{ __('Voiceover Tasks') }}

{{ number_format($data['synthesized']) }} {{ __('tasks') }}

@endif @endrole @role('user|subscriber|admin') @if (config('settings.whisper_feature_user') == 'allow')

{{ __('Audio Transcribed') }}

{{ number_format($data['transcribed']) }} {{ __('audio files') }}

@endif @endrole @role('user|subscriber|admin') @if (config('settings.code_feature_user') == 'allow')

{{ __('Codes Generated') }}

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

@endif @endrole

{{ __('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') }} @elseif ($user_subscription->payment_frequency == 'yearly') {{ __('Yearly Subscription') }} @else {{ __('Lifetime Subscription') }} @endif

{{ $user_subscription->plan_name }} {{ __('Plan') }} / {!! config('payment.default_system_currency_symbol') !!}{{ $user_subscription->price }} @if ($user_subscription->payment_frequency == 'monthly') {{ __('Per Month') }} @elseif($user_subscription->payment_frequency == 'yearly') {{ __('Per Year') }} @else {{ __('One Time Payment') }} @endif
@endif
@if ($user_subscription == '') {{ __('Total words available via subscription plan') }}: @if (auth()->user()->gpt_3_turbo_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->gpt_3_turbo_credits) }} @endif. {{ __('Total prepaid words available ') }}: {{ number_format(auth()->user()->gpt_3_turbo_credits_prepaid) }}. @else {{ __('Total words available via subscription plan') }} {{ number_format(auth()->user()->gpt_3_turbo_credits) }}. {{ __('Total prepaid words available') }} {{ number_format(auth()->user()->gpt_3_turbo_credits_prepaid) }}. @endif
@if ($subscription)
@if ($user_subscription->payment_frequency == 'lifetime') {{ __('Subscription renewal date') }}: {{ __('Never') }} @else {{ __('Subscription renewal date') }}: {{ $subscription->active_until }} @endif
@endif

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

@endsection @section('js') @endsection