@model VendorInfoModel @{ Layout = "_ColumnsTwo"; //title NopHtml.AddTitleParts(T("PageTitle.VendorInfo").Text); //page class NopHtml.AppendPageCssClassParts("html-account-page"); NopHtml.AppendPageCssClassParts("html-vendorinfo-page"); } @section left { @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.VendorInfo }) }

@T("Account.MyAccount") - @T("Account.VendorInfo")

@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorInfoTop, additionalData = Model })
@if (!string.IsNullOrEmpty(Model.PictureUrl)) {
picture
}
@if (Model.VendorAttributes.Count > 0) {
@await Html.PartialAsync("_VendorAttributes", Model.VendorAttributes)
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorInfoBottom, additionalData = Model })