Skip to content

Commit e48f0b3

Browse files
committed
Allow login route to show
1 parent 951204d commit e48f0b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
Route::post('license/{license}/renewal/checkout', [App\Http\Controllers\LicenseRenewalController::class, 'createCheckoutSession'])->name('license.renewal.checkout');
9595

9696
// Customer authentication routes
97-
Route::middleware(['guest', EnsureFeaturesAreActive::using(ShowAuthButtons::class)])->group(function () {
97+
Route::middleware(['guest'])->group(function () {
9898
Route::get('login', [CustomerAuthController::class, 'showLogin'])->name('customer.login');
9999
Route::post('login', [CustomerAuthController::class, 'login']);
100100

0 commit comments

Comments
 (0)