@model GarageBandz.Domain.Shop

Beershop Gestione Account

Da qui potrai modificare le informazioni del tuo profilo pubblico, inserisci i dati e salva la pagina.
@using (Html.BeginForm("Save", "Profile", FormMethod.Post, new { enctype = "multipart/form-data", @role = "form" })) {
@Html.DropDownListFor(x => x.State.Country.Id, GarageBandz.Web.Helpers.Metadata.Countries(), "Seleziona...", new { @class = "form-control" })
@Html.DropDownListFor( x => x.State.Id , GarageBandz.Web.Helpers.Metadata.States(Model.State.Country.Id), "Seleziona la nazione...", new { @class = "form-control" })
@@
@Html.HiddenFor(x => x.Id) @Html.HiddenFor(x => x.User.Id) }
@section Script { }