classify admin
This commit is contained in:
6
resources/views/vendor/installer/components/button.blade.php
vendored
Normal file
6
resources/views/vendor/installer/components/button.blade.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<button
|
||||
type="{{ $attributes->get('type', 'button') }}"
|
||||
class="bg-{{ $attributes->get('color', 'blue') }}-500 hover:bg-{{ $attributes->get('color', 'blue') }}-700 text-white font-bold py-2 px-4 rounded inline-flex items-center"
|
||||
>
|
||||
{{ $slot }}
|
||||
</button>
|
||||
7
resources/views/vendor/installer/components/error-check-icon.blade.php
vendored
Normal file
7
resources/views/vendor/installer/components/error-check-icon.blade.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg class="w-6 h-6 text-red-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z"
|
||||
clip-rule="evenodd"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 425 B |
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=""
|
||||
>
|
||||
9
resources/views/vendor/installer/components/label.blade.php
vendored
Normal file
9
resources/views/vendor/installer/components/label.blade.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<label
|
||||
for="{{ $attributes->get('for') }}"
|
||||
class="block font-medium leading-5 text-gray-700 pb-2"
|
||||
>
|
||||
{{ $slot }}
|
||||
@if($attributes->get('required', false))
|
||||
<span class="text-red-400">*</span>
|
||||
@endif
|
||||
</label>
|
||||
6
resources/views/vendor/installer/components/link.blade.php
vendored
Normal file
6
resources/views/vendor/installer/components/link.blade.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<a
|
||||
href="{{ $attributes->get('href') }}"
|
||||
class="bg-{{ $attributes->get('color', 'blue') }}-500 hover:bg-{{ $attributes->get('color', 'blue') }}-700 text-white font-bold py-2 px-4 rounded inline-flex items-center"
|
||||
>
|
||||
{{ $slot }}
|
||||
</a>
|
||||
3
resources/views/vendor/installer/components/success-check-icon.blade.php
vendored
Normal file
3
resources/views/vendor/installer/components/success-check-icon.blade.php
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg class="w-6 h-6 text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 313 B |
Reference in New Issue
Block a user