@if (loading()) {
@for (row of skeletonRows; track row) {
}
} @else if (error()) {
← Back Retry
} @else if (notFound()) {

Account not found

The account you're looking for doesn't exist or may have been deleted.

← Go back
} @else if (account()) {

Account: {{ title() }}

@for (row of topRows(); track $index) {
@for (field of row; track field.label) {
{{ field.label }}
@if (field.value && field.telephone) { {{ field.value }} } @else { {{ field.value ?? "—" }} }
}
}
@for (row of additionalRows(); track $index) {
@for (field of row; track field.label) {
{{ field.label }}
{{ field.value ?? "—" }}
}
}
Description
{{ description() ?? "—" }}
Billing Address
@if (billingAddress()) { @for (line of billingAddress(); track $index) {
{{ line }}
} } @else { — }
Shipping Address
@if (shippingAddress()) { @for (line of shippingAddress(); track $index) {
{{ line }}
} } @else { — }
Created By
{{ createdBy() ?? "—" }}
Last Modified By
{{ lastModifiedBy() ?? "—" }}
}