<%= t(:account_edit) %>


<%= form_for @user, :url => account_path do |f| %> <%= error_messages_for 'user', :header_message => t(:try_again), :message => t(:account_error_edit) %>
<%= f.label :login, t(:userid) %>
<%= f.text_field :login %>
<%= f.label t(:email) %>
<%= f.text_field :email %>
<%= t(:time_zone) %> <%= time_zone_select 'user', 'time_zone', nil, :default => 'Eastern Time (US & Canada)' %>
<%= f.label :password, raw(t(:password_change_raw)) %>
<%= f.password_field :password %>
<%= f.label :password_confirmation, raw(t(:password_confirmation_raw)) %> <%= f.password_field :password_confirmation %>


<%= t(:account_changes) %>

<%= raw(t(:password_current_raw)) %>
<%= t(:account_security) %>
<%= f.submit t(:account_edit_submit) %>
<% end %>