<% content_for :title do %>

<%= link_to "My Albums", albums_path %>

<% end %> <% if @album.present? %>

<%= @album.title %>

<% end %>

Upload New Image

<%= simple_form_for @images.new do |f| %> <%= f.input :user_id, as: :hidden %> <%= f.input :album_id, as: :hidden %> <%= f.input :image, as: :file %> <%= f.submit %> <% end %>