1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-02 02:07:42 +01:00
openstamanager/resources/views/components/inputs/standard-input.blade.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') }}">