@using Petwork.Domain.ValueObjects.Profiles
@model OrganizationProfileForm
@{
ViewBag.Title = "Edit Profile";
Layout = "~/Views/Shared/_LayoutUserThreeBars.cshtml";
}
@using (Html.BeginForm())
{
- @Resources.Profile.Description
- @Resources.Profile.Headline
@Html.TextBoxFor(x => x.Headline, new { Class = "w400p" })
- @Resources.Profile.LongDescription
@Html.TextAreaFor(x => x.Description)
@*
- Admin
-
*@
}