thenaquad
thenaquad
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Can't login with the custom guard
after rearranging my middleware groups and copy-pasting the middleware from the demo it worked
9 replies
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Can't login with the custom guard
damn... it was the livewire missing the StartSession middleware. when explicitly adding StartSession to the global middleware it works. when adding the StartSession to either of panel's middleware/authMiddleware it doesn't
9 replies
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Can't login with the custom guard
@alexandergaal could you please show your middleware configurations? both the admin panel provide and the kernel?
9 replies
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Can't login with the custom guard
i've managed to request the password reset successfully
9 replies
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Can't login with the custom guard
password broker is set, here it is:
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
],
'admins' => [
'provider' => 'admins',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
]
],
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
],
'admins' => [
'provider' => 'admins',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
]
],
and the corresponding authPasswordBroker call for the panel
9 replies