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