New support request
<%= form_for @request_changeset, Routes.support_path(@conn, :new), fn f -> %>
<%= if @request_changeset.action do %>
Oops, something went wrong! Please check the errors below.
<% end %>
<%= text_input f, :name, placeholder: "Name" %>
<%= error_tag f, :name %>
<%= email_input f, :email, placeholder: "Email" %>
<%= error_tag f, :email %>
<%= textarea f, :message, placeholder: "Your message" %>
<%= error_tag f, :message %>
Can you answer the following expression to confirm you are
not a basic robot?
<%= @captcha %> =
<%= text_input f, :captcha, placeholder: "Captcha" %>
<%= error_tag f, :captcha %>
<%= submit "Send" %>
<% end %>