@model Top4HireDrivers.Models.AddPhoneNumberViewModel @{ ViewBag.Title = "Phone Number"; }

@ViewBag.Title.

@using (Html.BeginForm("AddPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

Add a phone number


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.Number, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Number, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }