@if(user){
@if(user.hasProfile){ Profile picture of {{ user.firstname }} {{ user.lastname }} } @else { Default profile picture }

{{ user.firstname }} {{ user.lastname }}

Company - {{ user.companyName }} | For Sale - {{ businessListings?.length + commercialPropListings?.length }}

@if(user.hasCompanyLogo){ Company logo of {{ user.companyName }} }

{{ user.description }}

Company Profile

Name {{ user.firstname }} {{ user.lastname }}
EMail Address {{ user.email }}
@if(user.customerType==='professional'){
Phone Number {{ formatPhoneNumber(user.phoneNumber) }}
Company Location {{ user.location?.name }} - {{ user.location?.state }}
Professional Type {{ selectOptions.getCustomerSubType(user.customerSubType) }}
}
@if(user.customerType==='professional'){

Services we offer

Areas (Counties) we serve

@for (area of user.areasServed; track area) { {{ area.county }}{{ area.county ? '-' : '' }}{{ area.state }} }

Licensed In

@for (license of user.licensedIn; track license) { {{ license.registerNo }}-{{ license.state }} }
}
@if(businessListings?.length>0){

My Business Listings For Sale

@for (listing of businessListings; track listing) {
{{ selectOptions.getBusiness(listing.type) }}

{{ listing.title }}

}
} @if(commercialPropListings?.length>0){

My Commercial Property Listings For Sale

@for (listing of commercialPropListings; track listing) {
@if (listing.imageOrder?.length>0){ Property image for {{ listing.title }} } @else { Property placeholder image }

{{ selectOptions.getCommercialProperty(listing.type) }}

{{ listing.title }}

}
} @if( user?.email===keycloakUser?.email || (authService.isAdmin() | async)){ }
}