-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy Blade files on installation (#1118)
- Loading branch information
1 parent
c2a6018
commit 2dc1e91
Showing
56 changed files
with
322 additions
and
370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
stubs/livewire/resources/views/auth/confirm-password.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<x-guest-layout> | ||
<x-jet-authentication-card> | ||
<x-authentication-card> | ||
<x-slot name="logo"> | ||
<x-jet-authentication-card-logo /> | ||
<x-authentication-card-logo /> | ||
</x-slot> | ||
|
||
<div class="mb-4 text-sm text-gray-600"> | ||
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }} | ||
</div> | ||
|
||
<x-jet-validation-errors class="mb-4" /> | ||
<x-validation-errors class="mb-4" /> | ||
|
||
<form method="POST" action="{{ route('password.confirm') }}"> | ||
@csrf | ||
|
||
<div> | ||
<x-jet-label for="password" value="{{ __('Password') }}" /> | ||
<x-jet-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" autofocus /> | ||
<x-label for="password" value="{{ __('Password') }}" /> | ||
<x-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" autofocus /> | ||
</div> | ||
|
||
<div class="flex justify-end mt-4"> | ||
<x-jet-button class="ml-4"> | ||
<x-button class="ml-4"> | ||
{{ __('Confirm') }} | ||
</x-jet-button> | ||
</x-button> | ||
</div> | ||
</form> | ||
</x-jet-authentication-card> | ||
</x-authentication-card> | ||
</x-guest-layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.