fix
This commit is contained in:
parent
39d37010a3
commit
77321172a2
@ -20,17 +20,9 @@
|
|||||||
@env('local')
|
@env('local')
|
||||||
<x-forms.input required value="test@example.com" type="email" name="email"
|
<x-forms.input required value="test@example.com" type="email" name="email"
|
||||||
label="{{ __('input.email') }}" autofocus />
|
label="{{ __('input.email') }}" autofocus />
|
||||||
{{-- @if (config('mail.default'))
|
<a href="/forgot-password" class="text-xs">
|
||||||
{{ dd('mailer configured') }}
|
{{ __('auth.forgot_password') }}?
|
||||||
@else
|
</a>
|
||||||
{{ dd('mailer not configured') }}
|
|
||||||
@endif --}}
|
|
||||||
|
|
||||||
@if (!config('mail.default'))
|
|
||||||
<a href="/forgot-password" class="text-xs">
|
|
||||||
{{ __('auth.forgot_password') }}?
|
|
||||||
</a>
|
|
||||||
@endif
|
|
||||||
<x-forms.input required value="password" type="password" name="password"
|
<x-forms.input required value="password" type="password" name="password"
|
||||||
label="{{ __('input.password') }}" />
|
label="{{ __('input.password') }}" />
|
||||||
@else
|
@else
|
||||||
|
@ -16,7 +16,9 @@
|
|||||||
@isset($confirmAction)
|
@isset($confirmAction)
|
||||||
x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
|
x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
|
||||||
@endisset>
|
@endisset>
|
||||||
<span wire:target="submit" wire:loading.delay class="loading loading-spinner"></span>
|
@if ($attributes->whereStartsWith('wire:click')->first())
|
||||||
|
<span wire:target="submit" wire:loading.delay class="loading loading-spinner"></span>
|
||||||
|
@endif
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
</button>
|
</button>
|
||||||
@elseif($type === 'button')
|
@elseif($type === 'button')
|
||||||
@ -27,8 +29,10 @@
|
|||||||
@isset($confirmAction)
|
@isset($confirmAction)
|
||||||
x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
|
x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
|
||||||
@endisset>
|
@endisset>
|
||||||
<span wire:target="{{ explode('(', $attributes->whereStartsWith('wire:click')->first())[0] }}"
|
@if ($attributes->whereStartsWith('wire:click')->first())
|
||||||
wire:loading.delay class="loading loading-spinner"></span>
|
<span wire:target="{{ explode('(', $attributes->whereStartsWith('wire:click')->first())[0] }}"
|
||||||
|
wire:loading.delay class="loading loading-spinner"></span>
|
||||||
|
@endif
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
</button>
|
</button>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user