2022-08-12 10:45:04 +02:00
|
|
|
= @form.text_field :value,
|
|
|
|
id: @champ.input_id,
|
2022-07-04 18:37:30 +02:00
|
|
|
placeholder: t(".placeholder"),
|
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-01-12 18:34:45 +01:00
|
|
|
data: { controller: 'format', format: 'iban' },
|
2022-07-11 11:42:59 +02:00
|
|
|
class: "width-66-desktop",
|
|
|
|
maxlength: 34 + 9 # count space separator of 4 digits-groups
|