<%= form_for([@problem, @translation]) do |f| %> <% if @translation.errors.any? %>

<%= t 'errors.template.header', model: Translation.model_name.human, count: @translation.errors.count %>

<% end %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.label :content %>
<%= f.text_area :content %>
<%= f.submit %>
<% end %>