@model OrionIntel_DAL.Entity.Company @{ ViewBag.Title = "Basic Information"; }

Create

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

Company


@Html.ValidationSummary(true)
@Html.LabelFor(model => model.RegisteredName, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.RegisteredName) @Html.ValidationMessageFor(model => model.RegisteredName)
@Html.LabelFor(model => model.TradingName, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TradingName) @Html.ValidationMessageFor(model => model.TradingName)
@Html.LabelFor(model => model.RegistrationNumber, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.RegistrationNumber) @Html.ValidationMessageFor(model => model.RegistrationNumber)
@Html.LabelFor(model => model.VATRegistrationNumber, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.VATRegistrationNumber) @Html.ValidationMessageFor(model => model.VATRegistrationNumber)
}
@Html.ActionLink("Back to Profile", "Index")