Employment status:
{{ $member->employmentStatus }}
@if(!empty($employerName))
The name of the employer:
{{ $member->employerName }}
@endif
@if(!empty($member->employerAddress->line1))
Address 1:
{{ $member->employerAddress->line1 }}
@endif
@if(!empty($member->employerAddress->line2))
Address 2:
{{ $member->employerAddress->line2 }}
@endif
@if(!empty($member->employerAddress->city))
City:
{{ $member->employerAddress->city }}
@endif
@if(!empty($member->employerAddress->state))
State:
{{ $member->employerAddress->state }}
@endif
@if(!empty($member->employerAddress->zipcode))
Zip Code:
{{ $member->employerAddress->zipcode }}
@endif
@if(!empty($member->annualIncome))
Annual Income:
{{ $annualIncome[$member->annualIncome] }}
@endif
@if(!empty($member->netWorth))
Total Net Worth:
{{ $netWorth[$member->netWorth] }}
@endif
@if(!empty($member->liquidNetWorth) && empty($employerName))
Liquid Net Worth:
{{ $liquidNetWorth[$member->liquidNetWorth] }}
@endif
@if(!empty($member->liquidNetWorth) && !empty($employerName))
Liquid Net Worth:
{{ $liquidNetWorth[$member->liquidNetWorth] }}
@endif
Private Placement:
@if(empty($member->accreditedInvestorNetWorth) && empty($member->accreditedInvestorAnnualIncome) && empty($member->previousPrivatePlacementExperience))
No
@else
Yes
@endif
@if(!empty($member->accreditedInvestorNetWorth) || !empty($member->accreditedInvestorAnnualIncome) || !empty($member->previousPrivatePlacementExperience))
Accredited Investor Net Worth:
{{ !empty($member->accreditedInvestorNetWorth)?'Yes':'No' }}
Accredited Investor Annual Income:
{{ !empty($member->accreditedInvestorAnnualIncome)?'Yes':'No' }}
Previous Private Placement Experience:
{{ !empty($member->previousPrivatePlacementExperience)?'Yes':'No' }}
@endif
Finra Affiliated:
{{ !empty($member->finraAffiliated)?'Yes':'No' }}
Director Or Ten Percent Shareholder:
{{ !empty($member->directorOrTenPercentShareholder)?'Yes':'No' }}
@if(!empty($member->directorOrTenPercentShareholderCompany))
Director Or Ten Percent Shareholder Company:
{{ implode(', ', $member->directorOrTenPercentShareholderCompany) }}
@endif