diff --git a/resources/lang/en/default.php b/resources/lang/en/default.php index 1cecaad..a57a56a 100644 --- a/resources/lang/en/default.php +++ b/resources/lang/en/default.php @@ -15,7 +15,7 @@ "title" => "Forgot password", "heading" => "Reset your password", "submit" => [ - "label" => "Send reset email", + "label" => "Submit", ], "notification_success" => "Check your inbox for instructions!", ], diff --git a/src/Http/Controllers/EmailVerificationController.php b/src/Http/Controllers/EmailVerificationController.php index e5c0425..2f38319 100644 --- a/src/Http/Controllers/EmailVerificationController.php +++ b/src/Http/Controllers/EmailVerificationController.php @@ -2,10 +2,10 @@ namespace JeffGreco13\FilamentBreezy\Http\Controllers; -use App\Http\Controllers\Controller; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Auth\Events\Verified; use Illuminate\Http\RedirectResponse; +use Illuminate\Routing\Controller; use Illuminate\Support\Facades\Auth; class EmailVerificationController extends Controller diff --git a/tests/TestCase.php b/tests/TestCase.php index c367187..bbfc6c6 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,8 +2,10 @@ namespace JeffGreco13\FilamentBreezy\Tests; +use Filament\FilamentServiceProvider; use Illuminate\Database\Eloquent\Factories\Factory; use JeffGreco13\FilamentBreezy\FilamentBreezyServiceProvider; +use Livewire\LivewireServiceProvider; use Orchestra\Testbench\TestCase as Orchestra; class TestCase extends Orchestra @@ -24,7 +26,8 @@ class_basename($modelName) . protected function getPackageProviders($app) { return [ - //PluginServiceProvider::class, + LivewireServiceProvider::class, + FilamentServiceProvider::class, FilamentBreezyServiceProvider::class, ]; }