This is my form code.
<%= simple_form_for @user do |f|%>
<%= f.input :name %>
<%= f.button :submit %>
<% end %>
And this is the error I get :
compile error /home/shreyas/apps/vaccidate/app/views/users/_form.html.erb:1: syntax error, unexpected ')' ... simple_form_for @user do |f|).to_s); @output_buffer.concat ^ /home/shreyas/apps/vaccidate/app/views/users/_form.html.erb:9: syntax error, unexpected kENSURE, expecting ')' /home/shreyas/apps/vaccidate/app/views/users/_form.html.erb:11: syntax error, unexpected kEND, expecting ')'
What am i supposed to do ? Thanks !