classify admin
This commit is contained in:
9
resources/views/vendor/installer/components/input.blade.php
vendored
Normal file
9
resources/views/vendor/installer/components/input.blade.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<input
|
||||
class="appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
|
||||
id="{{ $attributes->get('id') }}"
|
||||
type="{{ $attributes->get('type', 'text') }}"
|
||||
name="{{ $attributes->get('name') }}"
|
||||
value="{{ $attributes->get('value') }}"
|
||||
{{ $attributes->merge(['required' => $attributes->get('required', false) ? 'required' : null ]) }}
|
||||
aria-label=""
|
||||
>
|
||||
Reference in New Issue
Block a user