if @post.photos.present?
@post.save
redirect_to root_path
flash[:notice] = "投稿が保存されました"
else
redirect_to root_path
flash[:alert] = "投稿に失敗しました"
end
で保存時、失敗時のメッセージを呼び出せる。
application.html.erbに
<% if flash[:notice] %>
<%= flash[:notice] %>
<% end %>
<% if flash[:alert] %>
<%= flash[:alert] %>
<% end %>
のような記述をしておく