I want to add a default value to a text-input field using simple-form.
With :placeholder
it is not used as default....
<%= f.input :user, :placeholder => 'user@example.com' %>
<%= f.input :user, :input_html => { :value => 'user@example.com' } %>