<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/select_provision.html.erb b/app/views/further_education_payments/claims/select_provision.html.erb
index 69b48e4bae..d9799df4e1 100644
--- a/app/views/further_education_payments/claims/select_provision.html.erb
+++ b/app/views/further_education_payments/claims/select_provision.html.erb
@@ -1,13 +1,19 @@
-<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
- <%= f.govuk_error_summary %>
+<% content_for(:page_title, page_title(@form.t(:heading), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
- <%= f.govuk_collection_radio_buttons :school_id, @form.radio_options, :id, :name, :address,
- legend: {
- text: "Select the college you teach at",
- tag: "h1",
- size: "l"
- },
- hint: { text: "Select your college from the search results." } %>
+
+
+ <%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
+ <%= f.govuk_error_summary %>
- <%= f.govuk_submit %>
-<% end %>
+ <%= f.govuk_collection_radio_buttons :school_id, @form.radio_options, :id, :name, :address,
+ legend: {
+ text: @form.t("heading"),
+ tag: "h1",
+ size: "l"
+ },
+ hint: { text: "Select your college from the search results." } %>
+
+ <%= f.govuk_submit %>
+ <% end %>
+
+
diff --git a/app/views/further_education_payments/claims/subjects_taught.html.erb b/app/views/further_education_payments/claims/subjects_taught.html.erb
index 3a85dcbeae..b7f9a8d053 100644
--- a/app/views/further_education_payments/claims/subjects_taught.html.erb
+++ b/app/views/further_education_payments/claims/subjects_taught.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/taught_at_least_one_term.html.erb b/app/views/further_education_payments/claims/taught_at_least_one_term.html.erb
index 24d86e8af3..800a093d35 100644
--- a/app/views/further_education_payments/claims/taught_at_least_one_term.html.erb
+++ b/app/views/further_education_payments/claims/taught_at_least_one_term.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question, school_name: journey_session.answers.school.name), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/teaching_hours_per_week.html.erb b/app/views/further_education_payments/claims/teaching_hours_per_week.html.erb
index f8592511e5..34421c391f 100644
--- a/app/views/further_education_payments/claims/teaching_hours_per_week.html.erb
+++ b/app/views/further_education_payments/claims/teaching_hours_per_week.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question, school_name: journey_session.answers.school.name), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/teaching_hours_per_week_next_term.html.erb b/app/views/further_education_payments/claims/teaching_hours_per_week_next_term.html.erb
index a9d29a91c5..2439b1d243 100644
--- a/app/views/further_education_payments/claims/teaching_hours_per_week_next_term.html.erb
+++ b/app/views/further_education_payments/claims/teaching_hours_per_week_next_term.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question, school_name: journey_session.answers.school.name), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/teaching_qualification.html.erb b/app/views/further_education_payments/claims/teaching_qualification.html.erb
index bcbdcae16d..8b7d2182cf 100644
--- a/app/views/further_education_payments/claims/teaching_qualification.html.erb
+++ b/app/views/further_education_payments/claims/teaching_qualification.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<%= form_with model: @form, url: claim_path(current_journey_routing_name), method: :patch, builder: GOVUKDesignSystemFormBuilder::FormBuilder, html: { novalidate: false } do |f| %>
diff --git a/app/views/further_education_payments/claims/teaching_responsibilities.html.erb b/app/views/further_education_payments/claims/teaching_responsibilities.html.erb
index 4c68310d01..02b3fd85a1 100644
--- a/app/views/further_education_payments/claims/teaching_responsibilities.html.erb
+++ b/app/views/further_education_payments/claims/teaching_responsibilities.html.erb
@@ -1,3 +1,5 @@
+<% content_for(:page_title, page_title(@form.t(:question), journey: current_journey_routing_name, show_error: @form.errors.any?)) %>
+
<% @backlink_path = landing_page_path %>
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 4fa299455a..00beeacd15 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -818,6 +818,25 @@ en:
feedback_email: "FE-Levellingup.PremiumPayments@education.gov.uk"
support_email_address: "FE-Levellingup.PremiumPayments@education.gov.uk"
forms:
+ ineligible:
+ courses:
+ heading: You are not eligible
+ lack_teaching_responsibilities:
+ heading: You are not eligible
+ lacks_teacher_qualification_or_enrolment:
+ heading: You are not eligible
+ must_at_least_half_hours_teaching_fe:
+ heading: You are not eligible
+ must_be_recent_further_education_teacher:
+ heading: You are not eligible
+ must_teach_at_least_one_term:
+ heading: You are not eligible for a financial incentive payment yet
+ subject_to_problematic_actions:
+ heading: You are not eligible
+ ineligible_teaching_less_than_2_5:
+ heading: You are not eligible
+ teaching_less_than_2_5_next_term:
+ heading: You are not eligible
teaching_responsibilities:
question: Are you a member of staff with teaching responsibilities?
errors:
@@ -828,6 +847,7 @@ en:
blank: Enter a college name or postcode
min_length: Enter a college name or postcode that is at least 3 characters long
select_provision:
+ heading: Select the college you teach at
errors:
blank: Select the college you teach at
contract_type:
@@ -991,6 +1011,8 @@ en:
question: Are at least half of your timetabled teaching hours spent teaching 16 to 19-year-olds, including those up to age 25 with an Education, Health and Care Plan (EHCP)?
errors:
inclusion: Select yes if at least half your timetabled teaching hours are spent teaching 16-19-year-olds, including those up to 25 with an Education, Health and Care Plan
+ eligible:
+ heading: You’re eligible for a financial incentive payment
check_your_answers:
part_one:
primary_heading: Check your answers