@model BAVRANI_MEDICAL_PVT.Models.Services.BookEqupment @{ //ViewBag.Title = "bookeqppment"; }

PLEASE ENTER SOME DETAILS FOR BOKING

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

@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.customer_name, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.customer_name, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.customer_name, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.customer_location, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownListFor(model => model.customer_location, ViewBag.patientlocation as SelectList, "--Select Location--", new { @class = "form-control" }) @*@Html.ValidationMessageFor(model => model.customer_location, "", new { @class = "text-danger" })*@
@Html.LabelFor(model => model.customer_Email, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.customer_Email, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.customer_Email, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.phonenumber, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.phonenumber, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.phonenumber, "", new { @class = "text-danger" })

@Html.ActionLink("Back To Home", "Index", "Home", new { area = "" }, new { @class = "btn btn-primary" })

}