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 => '[email protected]' %>
<%= f.input :user, :input_html => { :value => '[email protected]' } %>