-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added demo user and turn off filamentlogin
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ | |
|
||
<div> | ||
<x-label for="email" value="{{ __('Email') }}" /> | ||
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus autocomplete="username" /> | ||
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus autocomplete="username" value="[email protected]" /> | ||
</div> | ||
|
||
<div class="mt-4"> | ||
<x-label for="password" value="{{ __('Password') }}" /> | ||
<x-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" /> | ||
<x-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" value="[email protected]"/> | ||
</div> | ||
|
||
<div class="block mt-4"> | ||
|