@lang('sistema.client.registered_name'):*
{{ ($business_detail->registered_name) ? $business_detail->registered_name : "-" }}
@lang('sistema.client.type_of_entity'):*
{{ ($business_detail->business_type) ? $business_detail->business_type : '-' }}
@lang('sistema.client.authorised_signatories1'):*
{{ ($business_detail->authorised_signatories1) ? $business_detail->authorised_signatories1 : '-' }}
@lang('sistema.client.authorised_signatories2'):*
{{ ($business_detail->authorised_signatories2) ? $business_detail->authorised_signatories2 : '-' }}
@lang('sistema.client.registration_number'):*
{{ ($business_detail->registration_number) ? $business_detail->registration_number : '-' }}
@lang('sistema.client.incorporation_date'):*
{{ \Carbon\Carbon::parse($business_detail->incorporation_date)->format('d/m/Y') }}
@lang('sistema.client.incorporation_place'):*
{{ ($business_detail->incorporation_place) ? $business_detail->incorporation_place : '-' }}
@lang('sistema.client.entity_country'):*
@foreach($countries as $country)
{{ ($business_detail->country == $country->id) ? $country->name : ''}}
@endforeach
@lang('frontsistema.datos_personales.country_error')
@lang('sistema.client.entity_state'):*
{{ ($business_detail->state_name) ? $business_detail->state_name : '-' }}
@lang('sistema.client.entity_city'):*
{{ ($business_detail->city_name) ? $business_detail->city_name : '-' }}
@lang('sistema.client.entity_address'):*
{{ (($business_detail->address) ? $business_detail->address : '-') }}
@lang('sistema.client.entity_county'):*
{{ ($business_detail->county) ? $business_detail->county : '-' }}
@lang('sistema.client.entity_zip_code'):*
{{ ($business_detail->zip_code) ? $business_detail->zip_code : '-' }}
@lang('sistema.branches.branches'):*
@if(isset($branches) && count($branches)>0)
@foreach($branches as $branch_id => $branch_name)
{{ ($business_detail->branch_id == $branch_id) ? $branch_name : '' }}
@endforeach
@else
-
@endif
@lang('frontsistema.datos_personales.branch_error')
@lang('sistema.client.entity_industry_type'):
{{ ($business_detail->industry_type) ? $business_detail->industry_type : '-' }}
@lang('sistema.client.entity_employees'):
{{ ($business_detail->employees) ? $business_detail->employees : '-' }}
@lang('sistema.client.entity_webiste'):
{{ ($business_detail->webiste) ? $business_detail->webiste : '-' }}
@lang('sistema.client.entity_telephone1'):*
{{ ($business_detail->telephone1) ? $business_detail->telephone1 : '-' }}
@lang('sistema.client.entity_telephone2'):
{{ ($business_detail->telephone2) ? $business_detail->telephone2 : '-' }}
@lang('sistema.client.entity_telephone3'):
{{ ($business_detail->telephone3) ? $business_detail->telephone3 : '-' }}
@lang('sistema.client.entity_email1'):*
{{ ($business_detail->email1) ? $business_detail->email1 : '-' }}
@lang('sistema.client.entity_email2'):
{{ ($business_detail->email2) ? $business_detail->email2 : '-' }}