mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
13 lines
622 B
PHP
13 lines
622 B
PHP
|
@props([
|
||
|
'id',
|
||
|
'label' => null,
|
||
|
'value' => null,
|
||
|
'type' => 'text',
|
||
|
])
|
||
|
|
||
|
<label for="{{ $id }}" class="tw-block tw-mb-1 tw-mt-2 tw-font-medium tw-text-gray-900 dark:tw-text-white">{{ $label }}</label>
|
||
|
<input type="{{ $type }}"
|
||
|
id="{{ $id }}"
|
||
|
{{ $attributes->merge(['class' => 'tw-mb-2 tw-bg-gray-50 tw-border tw-border-gray-300 tw-text-gray-900 tw-rounded-lg focus:tw-ring-blue-500 focus:tw-border-blue-500 tw-block tw-w-full tw-p-2.5 dark:tw-bg-gray-700 dark:tw-border-gray-600 dark:tw-placeholder-gray-400 dark:tw-text-white dark:tw-focus:ring-blue-500 dark:tw-focus:border-blue-500']) }}
|
||
|
/>
|