2022-08-12 10:45:04 +02:00
|
|
|
.cnaf-inputs
|
|
|
|
%div
|
2023-02-27 15:33:25 +01:00
|
|
|
= @form.label :numero_allocataire, t('.numero_allocataire_label'), for: @champ.numero_allocataire_input_id
|
2022-08-12 10:45:04 +02:00
|
|
|
%p.notice= t('.numero_allocataire_notice')
|
|
|
|
= @form.text_field :numero_allocataire,
|
2022-10-17 10:05:59 +02:00
|
|
|
required: @champ.required?,
|
2022-08-12 10:45:04 +02:00
|
|
|
aria: { describedby: @champ.describedby_id },
|
2023-02-27 15:33:25 +01:00
|
|
|
class: "width-33-desktop", id: @champ.numero_allocataire_input_id
|
2022-08-12 10:45:04 +02:00
|
|
|
|
|
|
|
%div
|
2023-02-27 15:33:25 +01:00
|
|
|
= @form.label :code_postal, t('.code_postal_label'), for: @champ.code_postal_input_id
|
2022-08-12 10:45:04 +02:00
|
|
|
%p.notice= t('.code_postal_notice')
|
|
|
|
= @form.text_field :code_postal,
|
2022-10-17 10:05:59 +02:00
|
|
|
required: @champ.required?,
|
2022-08-12 10:45:04 +02:00
|
|
|
aria: { describedby: @champ.describedby_id },
|
2023-02-27 15:33:25 +01:00
|
|
|
class: "width-33-desktop",
|
|
|
|
id: @champ.code_postal_input_id
|