New Subscription
<%= simple_form_for :subscription, :url => :subscriptions, :id => "checkout-form-#{subscription.id}" do |f| %>
<% if current_user and !current_user.has_payment_info? %>
<%= render 'customer_form'%>
<% end %>
Please enter payment details:
<%= f.submit t(:choose), :class => 'btn btn-primary' %>
<% end %>