@if(auth()->user()->is_team)
{{ cleanLang(__('lang.client_name')) }}
{{ $client->client_company_name }}
{{ cleanLang(__('lang.telephone')) }}
{{ $client->client_phone }}
{{ cleanLang(__('lang.account_owner')) }}
{{ cleanLang(__('lang.category')) }}
{{ $client->category_name }}
{{ cleanLang(__('lang.account_status')) }}
@if($client->client_status == 'active')
{{ cleanLang(__('lang.active')) }}
@else
{{ cleanLang(__('lang.suspended')) }}
@endif
{{ cleanLang(__('lang.tags')) }}
@foreach($client->tags as $tag)
{{ $tag->tag_title }}
@endforeach
@endif
@foreach($fields as $field)
@if($field->customfields_show_client_page == 'yes')
{{ $field->customfields_title }}
{{ strip_tags(customFieldValue($field->customfields_name, $client, $field->customfields_datatype)) }}
@endif
@endforeach
@if(config('app.application_demo_mode'))
@endif
@endif