@using OSS.Models @model CompanyProfileExternal @{ Layout = "~/Views/Shared/_Layout.cshtml"; }

  PROJECTS New Certificate

@using (Html.BeginForm("PostCompanyProfileExpansion", "NewCOI", FormMethod.Post, new { id = "social", @novalidate = "novalidate", @class = "needs-validation text-left section social" })) { @Html.AntiForgeryToken()
@ViewBag.Error
      Company Details

@Html.TextBoxFor(m => m.CompanyName, new { @maxlength = "50", @minlength = "10", @name = "CompanyName", @class = "form-control mb-4", @id = "CompanyName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.CompanyTIN, new { @name = "CompanyTIN", @class = "form-control mb-4", @id = "CompanyTIN", @max = "9", @min = "9", @type = "text", @required = "true" })
Invalid Input
@Html.DropDownListFor(m => m.CompanyType, new List{ new SelectListItem{ Text="Private Company", Value = "Private" }, new SelectListItem{ Text="Government of Tanzania", Value = "Government" }, }, new { @class = "selectpicker form-control", @id = "CompanyType", @name = "CompanyType", @placeholder = "Sex Type", @required = "true", @value = "Please Select" })
Invalid Input
@Html.TextBoxFor(m => m.IncorpCertNo, new {@pattern= "^[0-9]+$", @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.IncorpCertDate, new { @name = "IncorpCertDate", @class = "form-control mb-4", @id = "IncorpCertDate", @type = "text", @required = "true" })
Invalid Input
      Company Address

@Html.DropDownListFor(m => m.Region, new SelectList(Model.ListofRegions , "Value", "Text"), new { @class = "selectpicker form-control", @id = "Region", @name = "Region", @Required = "true" })
Enter Region.
@Html.TextBoxFor(m => m.CompanyEmail, new { @name = "CompanyEmail", @class = "form-control mb-4", @id = "CompanyEmail", @type = "email", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.CompanyMobile, new { @name = "CompanyMobile", @class = "form-control mb-4", @id = "CompanyMobile", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.Telephone, new { @name = "Telephone", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.Street, new { @name = "Street", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.PostalAddress, new { @name = "PostalAddress", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.DropDownListFor(m => m.AreaType, new List{ new SelectListItem{ Text="Select Area Type", Value = "" }, new SelectListItem{ Text="Surveyed", Value = "Surveyed" }, new SelectListItem{ Text="UnSurveyed", Value = "UnSurveyed" }, }, new { @class = "selectpicker form-control", @id = "AreaType", @name = "AreaType", @placeholder = "Sex Type", @required = "true", @value = "Please Select" })
Invalid Input
@Html.TextBoxFor(m => m.Area, new { @name = "Area", @class = "form-control mb-4", @id = "Area", @type = "text" })
Invalid Input
@Html.DropDownListFor(m => m.LandMarkType, new List{ new SelectListItem{ Text="Near By", Value = "Near By" }, new SelectListItem{ Text="Opposite to", Value = "Opposite to" }, }, new { @class = "selectpicker form-control", @id = "LandMarkType", @name = "LandMarkType", @placeholder = "Sex Type", @value = "Please Select" })
Invalid Input
@Html.TextBoxFor(m => m.LandMarkDescription, new { @name = "LandMarkDescription", @class = "form-control mb-4", @id = "LandMarkDescription", @type = "text" })
Invalid Input
@Html.TextBoxFor(m => m.PlotNumber, new { @name = "PlotNumber", @class = "form-control mb-4", @id = "PlotNumber", @type = "text" })
Invalid Input
@Html.TextBoxFor(m => m.BlockPlotNumber, new { @name = "BlockPlotNumber", @class = "form-control mb-4", @id = "BlockPlotNumber", @type = "text" })
Invalid Input
@Html.TextBoxFor(m => m.HouseNo, new { @name = "HouseNo", @class = "form-control mb-4", @id = "HouseNo", @type = "text" })
Invalid Input

}