This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update Laravel to 10 * fix: fix tests for new jetstream livewire * feat: run pipeline with 8.1 * feat: add jetstream components
- Loading branch information
1 parent
c7b71c8
commit 249b7b8
Showing
61 changed files
with
867 additions
and
399 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<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 | ||
<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
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,11 +1,11 @@ | ||
<x-guest-layout> | ||
<main class="form-signin"> | ||
<x-jet-authentication-card> | ||
<x-authentication-card> | ||
<x-slot name="logo"> | ||
<x-jet-authentication-card-logo/> | ||
<x-authentication-card-logo/> | ||
</x-slot> | ||
|
||
<x-jet-validation-errors class="mb-4"/> | ||
<x-validation-errors class="mb-4"/> | ||
|
||
@if (session('status')) | ||
<div class="mb-4 font-medium text-sm text-green-600"> | ||
|
@@ -18,21 +18,21 @@ | |
<h1 class="h3 mb-3 fw-normal">Please sign in</h1> | ||
<div class="form-floating"> | ||
|
||
<x-jet-input id="email" class="form-control" type="email" name="email" :value="old('email')" | ||
<x-input id="email" class="form-control" type="email" name="email" :value="old('email')" | ||
required autofocus placeholder="[email protected]"/> | ||
<x-jet-label for="email" value="{{ __('Email') }}"/> | ||
<x-label for="email" value="{{ __('Email') }}"/> | ||
</div> | ||
|
||
<div class="form-floating"> | ||
|
||
<x-jet-input id="password" class="form-control" type="password" name="password" required | ||
<x-input id="password" class="form-control" type="password" name="password" required | ||
autocomplete="current-password" placeholder="Password"/> | ||
<x-jet-label for="password" value="{{ __('Password') }}"/> | ||
<x-label for="password" value="{{ __('Password') }}"/> | ||
</div> | ||
|
||
<div class="block mt-4"> | ||
<label for="remember_me" class="flex items-center"> | ||
<x-jet-checkbox id="remember_me" name="remember"/> | ||
<x-checkbox id="remember_me" name="remember"/> | ||
<span class="ml-2 text-sm text-gray-600">{{ __('Remember me') }}</span> | ||
</label> | ||
</div> | ||
|
@@ -45,11 +45,11 @@ | |
</a> | ||
@endif | ||
|
||
<x-jet-button class="ml-4"> | ||
<x-button class="ml-4"> | ||
{{ __('Log in') }} | ||
</x-jet-button> | ||
</x-button> | ||
</div> | ||
</form> | ||
</x-jet-authentication-card> | ||
</x-authentication-card> | ||
</main> | ||
</x-guest-layout> |
Oops, something went wrong.