Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_CreateOrUpdateAddress.cshtml

@model AddressModel


@if (Model.CompanyEnabled) {
@if (Model.CompanyRequired) { }
} @if (Model.CountryEnabled) {
} @if (Model.CountryEnabled && Model.StateProvinceEnabled) {
} @if (Model.CountyEnabled) {
@if (Model.CountyRequired) { }
} @if (Model.CityEnabled) {
@if (Model.CityRequired) { }
} @if (Model.StreetAddressEnabled) {
@if (Model.StreetAddressRequired) { }
} @if (Model.StreetAddress2Enabled) {
@if (Model.StreetAddress2Required) { }
} @if (Model.ZipPostalCodeEnabled) {
@if (Model.ZipPostalCodeRequired) { }
} @if (Model.PhoneEnabled) {
@if (Model.PhoneRequired) { }
} @if (Model.FaxEnabled) {
@if (Model.FaxRequired) { }
} @if (Model.CustomAddressAttributes.Count > 0) { @await Html.PartialAsync("_AddressAttributes", Model.CustomAddressAttributes) } @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.AddressBottom, additionalData = Model })