Profile

<%= label :user_address, 'User address', class: 'font-bold' %>

disabled="disabled" data-clipboard-target="source" />

Your account's address on the Internet

<%= form_for(@user, url: setting_path(:profile), html: { :method => :put }) do |f| %> <%= render FormElements::FieldsetComponent.new(tag: "div", title: "Display name") do %> <%= f.text_field :display_name, class: "w-full sm:w-3/5" %> <% if @validation_errors.present? && @validation_errors[:display_name].present? %>

<%= @validation_errors[:display_name].first %>

<% end %> <% end %>

<%= f.submit 'Save', class: "btn-md btn-blue w-full md:w-auto" %>

<% end %>