<% content_for :title, "Submit Loan Application" %>

Terms and Conditions

You are about to submit the application for disbursement. Please make sure the details you supplied are correct and you agree to our terms and conditions.
Visit our > Terms & Conditions
<%= form_with(model: @loan_application, local: true) do |form| %> <% if @loan_application.errors.any? %>

<%= pluralize(@loan_application.errors.count, "error") %> prohibited this loan_application from being saved:

    <% @loan_application.errors.full_messages.each do |message| %>
  • <%= message %>
  • <% end %>
<% end %> <%= form.hidden_field :redirect_error, value: "application_submission_form" %>
<%= submit_tag "Submit Application", :class => "text-capitalize s-btn s-btn--md s-btn--primary-bg g-radius--50 g-padding-x-70--xs g-margin-b-20--xs" %>
<% end %>