| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
- return [
-
- 'title' => 'Zarejestruj się',
-
- 'heading' => 'Rejestracja',
-
- 'actions' => [
-
- 'login' => [
- 'before' => 'lub',
- 'label' => 'zaloguj się na swoje konto',
- ],
-
- ],
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Adres e-mail',
- ],
-
- 'name' => [
- 'label' => 'Nazwa',
- ],
-
- 'password' => [
- 'label' => 'Hasło',
- 'validation_attribute' => 'hasło',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Potwierdź hasło',
- ],
-
- 'actions' => [
-
- 'register' => [
- 'label' => 'Zarejestruj się',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'throttled' => [
- 'title' => 'Zbyt dużo prób rejestracji',
- 'body' => 'Spróbuj ponownie za :seconds sekund.',
- ],
-
- ],
-
- ];
|