2021-09-21 14:49:54 +02:00
|
|
|
.cnaf-inputs
|
|
|
|
%div
|
|
|
|
= form.label :numero_allocataire, t('.numero_allocataire_label')
|
|
|
|
%p.notice= t('.numero_allocataire_notice')
|
|
|
|
= form.text_field :numero_allocataire,
|
|
|
|
required: champ.mandatory?,
|
2022-07-13 15:45:59 +02:00
|
|
|
aria: { describedby: champ.describedby_id },
|
|
|
|
class: "width-33-desktop"
|
2021-09-21 14:49:54 +02:00
|
|
|
|
|
|
|
%div
|
|
|
|
= form.label :code_postal, t('.code_postal_label')
|
|
|
|
%p.notice= t('.code_postal_notice')
|
|
|
|
= form.text_field :code_postal,
|
|
|
|
required: champ.mandatory?,
|
2022-07-13 15:45:59 +02:00
|
|
|
aria: { describedby: champ.describedby_id },
|
|
|
|
class: "width-33-desktop"
|