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

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

{{ auth()->user()->job_role }}
@if(is_null(auth()->user()->plan_id))

{{ number_format(auth()->user()->available_words + auth()->user()->available_words_prepaid) }} / {{ number_format(auth()->user()->total_words) }}

{{ __('Words Left') }}

{{ number_format(auth()->user()->available_images + auth()->user()->available_images_prepaid) }} / {{ number_format(auth()->user()->total_images) }}

{{ __('Images Left') }}
{{ __('Free Trial') }}
{{ __('Upgrade Now') }} @else

{{ number_format(auth()->user()->available_words + auth()->user()->available_words_prepaid) }} / {{ number_format(auth()->user()->total_words) }}

{{ __('Words Left') }}

{{ number_format(auth()->user()->available_images + auth()->user()->available_images_prepaid) }} / {{ number_format(auth()->user()->total_images) }}

{{ __('Images Left') }}
{{ $subscription }} {{ __('Plan') }}
@endif

{{ __('Documents Created') }} ({{ __('Current Month') }})

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

{{ __('Words Generated') }} ({{ __('Current Month') }})

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

{{ __('Images Created') }} ({{ __('Current Month') }})

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

{{ __('Templates Used') }} ({{ __('Current Month') }})

{{ $data['templates_used'] }} / {{ $templates_total }}

{{ __('Favorite Templates') }}

{{ __('Always have your top favorite templates handy whenever you need them') }}
@if ($template_quantity)
@foreach ($templates as $template)
favorite) data-tippy-content="{{ __('Remove from favorite') }}" @else data-tippy-content="{{ __('Select as favorite') }}" @endif onclick="favoriteStatus(this.id)">
{!! $template->icon !!}
{{ __($template->name) }}

{{ __($template->description) }}

@if($template->professional)

{{ __('Pro') }}

@endif
@endforeach @foreach ($custom_templates as $template)
favorite) data-tippy-content="{{ __('Remove from favorite') }}" @else data-tippy-content="{{ __('Select as favorite') }}" @endif onclick="favoriteStatusCustom(this.id)">
{!! $template->icon !!}
{{ __($template->name) }}

{{ __($template->description) }}

@if($template->professional)

{{ __('Pro') }}

@endif
@endforeach
@else
{{ __('To add templates as your favorite ones, simply click on the start icon on desired') }} {{ __('templates') }}
@endif

{{ __('Word Generation') }} ({{ __('Current Month') }})

{{ __('Monitor your daily word generation closely') }}
@endsection @section('js') @endsection