@using BTCPayServer.Abstractions.Form @using Newtonsoft.Json.Linq @model BTCPayServer.Abstractions.Form.Field @{ if (Model is not HtmlInputField field) { field = JObject.FromObject(Model).ToObject(); } }
@if (field.Required) { } else { } @if (!string.IsNullOrEmpty(field.HelpText)) { @field.HelpText }