@if(isset($title))
{{ $title }}
@else
{{ __('lang.client') }}
@endif
{{ $client->getCompleteName() }}
@if($client->address)
{{ $client->address }}
@endif
@if($client->address_second)
{{ $client->address_second }}
@endif
@if($client->city && $client->state && $client->postal_code && $client->country)
{{ $client->city->name ?? '' }}, {{ $client->state->name ?? '' }} {{ $client->postal_code ?? '' }} {{ $client->country->name ?? '' }}
@endif
@if($client->phone)
{{ $client->phone_code_id ? '('. $client->phoneCode->getPhoneCode() . ')' : '' }} {{ $client->phone }}
@endif
@if($client->email)
{{ $client->email }}
@endif