I have a namespaced resource in my Rails 5 app and want the correct form for it.
My scaffold for Platform in Rails 5 gave me:
<%= form_with(model: platform, local: true ) do |form| %>
In Rails 4 I would include my namespace ('customer') like:
<%= form_for [:customer, @platform] do |f| %>
So what is the equivalent in Rails 5?