{{ __('Client Code') }}: {{ $client_code ?? '-' }}

@can('clients edit') @endcan
@if (session()->has('message'))
{{ session('message') }}
@endif

{{ __('Basic Information') }}

{{ __('Arabic Name') }} {{ $name['ar'] ?? '-' }}
{{ __('English Name') }} {{ $name['en'] ?? '-' }}
{{ __('Status') }} {{ __(ucfirst($status)) }}

{{ __('Contact') }}

{{ __('Email') }} {{ $email ?? '-' }}
{{ __('Mobile') }} {{ $mobile ?? '-' }}
{{ __('Address') }} {{ $address ?? '-' }}

{{ __('Contract') }}

{{ __('Start Date') }} {{ $contract_start_date ?: '-' }}
{{ __('End Date') }} {{ $contract_end_date ?: '-' }}
{{ __('Reminder Days') }} {{ $reminder_days_before_end ?: '-' }}

{{ __('Classification') }}

{{ __('Client Type') }}
{{ $client->type ? $client->type->name[app()->getLocale()] : '-' }}
{{ __('Importance') }}
{{ $client->importanceLevel ? $client->importanceLevel->name[app()->getLocale()] : '-' }}
{{ __('Activity') }}
{{ $client->activity ? $client->activity->name[app()->getLocale()] : '-' }}

{{ __('Relations') }}

{{ __('Project') }} {{ $client->project ?$client->project->name: '-' }}
{{ __('Manager') }} {{ $client->manager ? $client->manager->name : '-' }}

{{ __('Notes') }}

{{ $notes ?: '-' }}