%= turbo_frame_tag dom_id(@translation_key) do %>
<%= form_with model: @translation, url: translation_key_translation_path(@translation_key), method: :patch, class: "relative" do |f| %>
<%= hidden_field_tag :locale_id, @locale.id %>
<%= f.label :value, "Translation", class: "sr-only" %>
<%= f.text_area :value, row: 3, autofocus: true, placeholder: "Enter your translation", class: "block w-full resize-none border-0 bg-transparent py-1.5 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm sm:leading-6" %>
<%= link_to "Discard", locale_translations_path(@locale), class: "btn btn-secondary" %>
<%= f.submit "Save", class: "inline btn btn-primary" %>
<% end %>
<% end %>