mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
11 lines
358 B
PHP
11 lines
358 B
PHP
<input {{ $attributes->merge([
|
|
'type' => isset($type) ? $type : 'text',
|
|
'name' => $name,
|
|
'id' => $id,
|
|
'value' => $value,
|
|
'required' => $required,
|
|
'placeholder' => $placeholder,
|
|
'class' => $class,
|
|
'data-parsley-errors-container' => '#'.$unique_id.'-errors',
|
|
]) }} autocomplete="{{ $attributes->get('autocomplete', 'off') }}">
|