| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
- return [
-
- 'title' => 'Registracija',
-
- 'heading' => 'Registriraj se',
-
- 'actions' => [
-
- 'login' => [
- 'before' => 'ili',
- 'label' => 'se prijavi',
- ],
-
- ],
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Email adresa',
- ],
-
- 'name' => [
- 'label' => 'Ime',
- ],
-
- 'password' => [
- 'label' => 'Lozinka',
- 'validation_attribute' => 'lozinka',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Potvrdi lozinku',
- ],
-
- 'actions' => [
-
- 'register' => [
- 'label' => 'Registriraj se',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'throttled' => [
- 'title' => 'Previše pokušaja registracije',
- 'body' => 'Molim pokušajte ponovno za :seconds sekundi.',
- ],
-
- ],
-
- ];
|