+ <%= render 'shared/back_link' %>
- <%= f.label :title, t("proposal_notifications.new.title_label") %>
- <%= f.text_field :title, label: false %>
+
<%= t("proposal_notifications.new.title") %>
- <%= f.label :body, t("proposal_notifications.new.body_label") %>
- <%= f.text_area :body, label: false %>
+ <%= form_for @notification do |f| %>
+ <%= render "shared/errors", resource: @notification %>
- <%= f.hidden_field :proposal_id, value: @proposal.id %>
+ <%= f.label :title, t("proposal_notifications.new.title_label") %>
+ <%= f.text_field :title, label: false %>
- <%= f.submit t("proposal_notifications.new.submit_button") %>
-<% end %>
\ No newline at end of file
+ <%= f.label :body, t("proposal_notifications.new.body_label") %>
+ <%= f.text_area :body, label: false, rows: "3" %>
+
+ <%= f.hidden_field :proposal_id, value: @proposal.id %>
+
+
+ <%= f.submit t("proposal_notifications.new.submit_button"), class: "button expanded" %>
+
+ <% end %>
+