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

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

{{ auth()->user()->job_role }}
@if ($user_subscription != '')
Active Subscription Plan: {{ $user_subscription->plan_name }}
@endif {{ __('Edit Profile') }}

{{ __('Personal Details') }}

{{ __('Full Name') }} {{ auth()->user()->name }}
{{ __('Job Role ') }} {{ auth()->user()->job_role }}
{{ __('Company') }} {{ auth()->user()->company }}
Website {{ auth()->user()->website }}
{{ __('City') }} {{ auth()->user()->city }}
{{ __('Country') }} {{ auth()->user()->country }}
{{ __('Email') }} {{ auth()->user()->email }}
{{ __('Phone') }} {{ auth()->user()->phone_number }}
{{ __('Audio Language') }} {{ $language_file }}
{{ __('Live Language') }} {{ $language_live }}
{{ __('Default Project') }} {{ ucfirst(auth()->user()->default_project) }}

{{ __('Total Minutes Used') }}

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

{{ number_format((float)$user_data_month['total_minutes'][0]['data'] / 60, 2) }}

{{ __('Total Words Generated') }}

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

{{ number_format($user_data_month['total_words'][0]['data']) }}

{{ __('Audio Files Transcribed') }}

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

{{ number_format($user_data_month['total_audio_files'][0]['data']) }}

{{ __('Speech to Text Usage ') }}({{ __('Current Year') }})

{{ __('Total Minutes Used') }}

{{ number_format((float)$user_data_year['total_minutes'][0]['data'] / 60, 2) }}

{{ __('Total Words Generated') }}

{{ number_format($user_data_year['total_words'][0]['data']) }}

{{ __('Total Audio Files Transcribed') }}

{{ number_format($user_data_year['total_file_transcribe'][0]['data']) }}

{{ __('Total Recordings Transcribed') }}

{{ number_format($user_data_year['total_recording_transcribe'][0]['data']) }}

{{ __('Total Live Transcribe Results') }}

{{ number_format($user_data_year['total_live_transcribe'][0]['data']) }}

@endsection @section('js') @endsection