@model TaxRateAddEditModel @{ ViewData["Title"] = "Add/Edit Tax Rate"; }

@(string.IsNullOrWhiteSpace(Model.StripeTaxRateId) ? "Create" : "Edit") Tax Rate

@if (!string.IsNullOrWhiteSpace(Model.StripeTaxRateId)) {

Note: Updating a Tax Rate archives the currently selected rate and creates a new rate with a new ID. The previous data still exists in a disabled state.

}
%