<%= @validation_errors[:display_name].first %>
<% end %> <% end %> <%= render FormElements::FieldsetComponent.new(tag: "div", title: "Nostr address (NIP-05)") do %> <%= f.text_field :nip05_address, value: @profile["nip05"], class: "w-full sm:w-3/5" %> <% if @validation_errors.present? && @validation_errors[:nip05_address].present? %><%= @validation_errors[:nip05_address].first %>
<% end %> <% end %> <%= render FormElements::FieldsetComponent.new(tag: "div", title: "Ligtning address for Zaps") do %> <%= f.text_field :lud16_address, value: @profile["lud16"], class: "w-full sm:w-3/5" %> <% if @validation_errors.present? && @validation_errors[:lud16_address].present? %><%= @validation_errors[:lud16_address].first %>
<% end %> <% end %> <% end %>