@model ParcelWeb.Core.Domain.TermsCondition @{ ViewBag.Title = "Terms & Condition"; }

Update Terms & Conditions

@using (Html.BeginForm("TermsAndCondition", "Shipments", FormMethod.Post, new { @class = "form form-horizontal" })) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.Id)

Terms & Conditions

@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Condition, "Terms & Conditions", htmlAttributes: new { @class = "label-control col-md-2" })
@Html.ValidationMessageFor(model => model.Condition, "", new { @class = "text-danger" })
}
@section Scripts { @Html.Raw(TempData["msg"]) }