Try your search with a different keyword or use * as a wildcard.
@model VendorAttributeValueModel
@{
Layout = "_AdminPopupLayout";
//page title
ViewBag.PageTitle = T("Admin.Vendors.VendorAttributes.Values.AddNew").Text;
}
<form asp-controller="VendorAttribute" asp-action="ValueCreatePopup"
asp-route-vendorAttributeId="@Context.Request.Query["vendorAttributeId"]"
asp-route-btnId="@Context.Request.Query["btnId"]"
asp-route-formId="@Context.Request.Query["formId"]">
<div class="content-header clearfix">
<h1 class="float-left">
@T("Admin.Vendors.VendorAttributes.Values.AddNew")
</h1>
<div class="float-right">
<button type="submit" name="save" class="btn btn-primary">
<i class="far fa-floppy-disk"></i>
@T("Admin.Common.Save")
</button>
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.AdminVendorAttributeValueDetailsButtons, additionalData = Model })
</div>
</div>
@await Html.PartialAsync("_CreateOrUpdateValue", Model)
</form>