Form with strong parameters

<%= form_with url: update_strong_path, class:"bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4" do |form| %>
<%= form.label :name, "Name:", class:"block text-gray-700 text-sm font-bold mb-2" %>
<%= form.text_field 'strong[name]', class:"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" %>
<%= form.label :surname, "Surname:", class:"block text-gray-700 text-sm font-bold mb-2" %>
<%= form.text_field 'strong[surname]', class:"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" %>
<%= form.label :birth_date, "Birth Date:", class:"block text-gray-700 text-sm font-bold mb-2" %> <%= form.text_field 'strong[birth][date]', class:"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" %>
<%= form.label :birth_location, "Birth Location:", class:"block text-gray-700 text-sm font-bold mb-2" %> <%= form.text_field 'strong[birth][location]', class:"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" %>
<%= form.submit class:"bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" %>
<% end %>