<%= simple_form_for(@user) do |t| %>
<%= t.input :email %> <%= t.input :first_name %> <%= t.input :last_name %> <%= t.input :password %> <%= t.input :photo %> <%= t.submit :Save, class: "btn btn-primary save-btn form-control" %>

<%= link_to "View my profile", user_path(@user), class: "btn btn-primary save-btn form-control" %>
<% if @user.photo.url.nil? %> <%= image_tag "https://upload.wikimedia.org/wikipedia/commons/8/89/Portrait_Placeholder.png"%> <% else %> <%= cl_image_tag current_user.photo%> <% end %> <%#= t.input_field :photo, onchange: 'this.form.submit();' %> <%#= t.input_field :photo, as: :hidden %>
<% end %>