@extends('layouts.client') @section('title', 'My Profile') @section('content')

My Profile

Manage your account information and settings

@if(session('success'))
{{ session('success') }}
@endif

Profile Information

{{ $client->name }}

{{ $client->email }}

{{ $client->phone ?: 'Not provided' }}

{{ $client->company ?: 'Not provided' }}

{{ $client->tax_id ?: 'Not provided' }}

{{ ucfirst($client->status) }}
@if($client->address || $client->city || $client->state || $client->zip_code || $client->country)

Address Information

@if($client->address)

{{ $client->address }}

@endif @if($client->city)

{{ $client->city }}

@endif @if($client->state)

{{ $client->state }}

@endif @if($client->zip_code)

{{ $client->zip_code }}

@endif @if($client->country)

{{ $client->country }}

@endif
@endif @if($client->notes)

{{ $client->notes }}

@endif

{{ $stats['member_since'] }}

{{ $stats['last_login'] }}

Account Statistics

Total Documents {{ number_format($stats['total_documents']) }}
Pending Documents {{ number_format($stats['pending_documents']) }}
Processed Documents {{ number_format($stats['processed_documents']) }}

Total Invoices {{ number_format($stats['total_invoices']) }}
Paid Invoices {{ number_format($stats['paid_invoices']) }}
Pending Invoices {{ number_format($stats['pending_invoices']) }}
Overdue Invoices {{ number_format($stats['overdue_invoices']) }}

Total Messages {{ number_format($stats['total_messages']) }}
@endsection