私はsimple_form gemでこのフォームを持っています
<%= simple_form_for(@post) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :title %>
<%= f.input :description, :as => :text %>
<%= text_field_tag 'post[tags]' %>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>
この行に simple_form 形式で書きたい:
<%= text_field_tag 'post[tags]' %>
どうすればいいですか?
ありがとうございました!