File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed
resources/views/livewire/auth Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ public function confirmPassword(): void
34
34
35
35
<div class =" flex flex-col gap-6" >
36
36
<x-auth-header
37
- title =" Confirm password"
38
- description =" This is a secure area of the application. Please confirm your password before continuing."
37
+ : title =" __(' Confirm password') "
38
+ : description =" __(' This is a secure area of the application. Please confirm your password before continuing.') "
39
39
/>
40
40
41
41
<!-- Session Status -->
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public function sendPasswordResetLink(): void
23
23
}; ? >
24
24
25
25
<div class =" flex flex-col gap-6" >
26
- <x-auth-header title =" Forgot password" description =" Enter your email to receive a password reset link" />
26
+ <x-auth-header : title =" __(' Forgot password') " : description =" __(' Enter your email to receive a password reset link') " />
27
27
28
28
<!-- Session Status -->
29
29
<x-auth-session-status class =" text-center" :status =" session('status')" />
@@ -43,7 +43,7 @@ public function sendPasswordResetLink(): void
43
43
</form >
44
44
45
45
<div class =" space-x-1 text-center text-sm text-zinc-400" >
46
- Or, return to
47
- <flux:link :href =" route('login')" wire:navigate >log in</flux:link >
46
+ {{ __ ( ' Or, return to' ) } }
47
+ <flux:link :href =" route('login')" wire:navigate >{{ __ ( ' log in' ) } } </flux:link >
48
48
</div >
49
49
</div >
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ protected function throttleKey(): string
74
74
}; ? >
75
75
76
76
<div class =" flex flex-col gap-6" >
77
- <x-auth-header title =" Log in to your account" description =" Enter your email and password below to log in" />
77
+ <x-auth-header : title =" __(' Log in to your account') " : description =" __(' Enter your email and password below to log in') " />
78
78
79
79
<!-- Session Status -->
80
80
<x-auth-session-status class =" text-center" :status =" session('status')" />
@@ -118,9 +118,9 @@ protected function throttleKey(): string
118
118
</form >
119
119
120
120
@if (Route:: has (' register' ) )
121
- <div class =" space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400" >
122
- Don't have an account?
123
- <flux:link :href =" route('register')" wire:navigate >Sign up</flux:link >
124
- </div >
121
+ <div class =" space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400" >
122
+ {{ __ ( ' Don\ ' t have an account?' ) } }
123
+ <flux:link :href =" route('register')" wire:navigate >{{ __ ( ' Sign up' ) } } </flux:link >
124
+ </div >
125
125
@endif
126
126
</div >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public function register(): void
36
36
}; ? >
37
37
38
38
<div class =" flex flex-col gap-6" >
39
- <x-auth-header title =" Create an account" description =" Enter your details below to create your account" />
39
+ <x-auth-header : title =" __(' Create an account') " : description =" __(' Enter your details below to create your account') " />
40
40
41
41
<!-- Session Status -->
42
42
<x-auth-session-status class =" text-center" :status =" session('status')" />
@@ -91,7 +91,7 @@ public function register(): void
91
91
</form >
92
92
93
93
<div class =" space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400" >
94
- Already have an account?
95
- <flux:link :href =" route('login')" wire:navigate >Log in</flux:link >
94
+ {{ __ ( ' Already have an account?' ) } }
95
+ <flux:link :href =" route('login')" wire:navigate >{{ __ ( ' Log in' ) } } </flux:link >
96
96
</div >
97
97
</div >
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ function ($user) {
69
69
}; ? >
70
70
71
71
<div class =" flex flex-col gap-6" >
72
- <x-auth-header title =" Reset password" description =" Please enter your new password below" />
72
+ <x-auth-header : title =" __(' Reset password') " : description =" __(' Please enter your new password below') " />
73
73
74
74
<!-- Session Status -->
75
75
<x-auth-session-status class =" text-center" :status =" session('status')" />
You can’t perform that action at this time.
0 commit comments