「form_with」の基本の形は以下のようになります。
<%= form_with(model: 'モデルクラスのインスタンス', url: '送信先のPATH', local: true) do |f| %>
:
:
:
<% end %>
と言った形です。
実際に私の使っていたform_withを使うと、
以下のようになります。
<%= form_with(model: @product, url: admins_products_path, local: true) do |f| %>
:
:
:
<% end %>