akaunting 3.0 (the last dance)
This commit is contained in:
16
resources/views/components/form/input/hidden.blade.php
Normal file
16
resources/views/components/form/input/hidden.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
<input type="hidden"
|
||||
name="{{ $name }}"
|
||||
id="{{ $id }}"
|
||||
value="{{ $value }}"
|
||||
placeholder="{{ $placeholder }}"
|
||||
@if ($disabled)
|
||||
disabled="disabled"
|
||||
@endif
|
||||
@if ($required)
|
||||
required="required"
|
||||
@endif
|
||||
@if ($readonly)
|
||||
readonly="readonly"
|
||||
@endif
|
||||
{{ $attributes->except(['placeholder', 'disabled', 'required', 'readonly', 'v-error', 'v-error-message']) }}
|
||||
/>
|
Reference in New Issue
Block a user