Is it possible to use Simple Form (by: Plataformatec) without a model?
https://github.com/plataformatec/simple_form
You can use :symbol as the first argument.
:symbol
<%= simple_form_for :user, url: users_path do |f| %> <%= f.input :name, as: :string %> ... <% end %>
It will output something like this:
... * Name ...