mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-03-02 02:07:42 +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') }}">
|