Skip to content

Commit

Permalink
added demo user and turn off filamentlogin
Browse files Browse the repository at this point in the history
  • Loading branch information
Flatroy committed Jun 18, 2024
1 parent 39020d5 commit ef27815
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Providers/Filament/AppPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function panel(Panel $panel): Panel
->default()
->id('app')
->path('/app')
->login()
// ->login()
->spa()
->databaseNotifications()
->colors([
Expand Down
4 changes: 2 additions & 2 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down

0 comments on commit ef27815

Please sign in to comment.