Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions resources/views/livewire/auth/confirm-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="flex flex-col gap-6">
<x-auth-header
title="Confirm password"
description="This is a secure area of the application. Please confirm your password before continuing."
:title="__('Confirm password')"
:description="__('This is a secure area of the application. Please confirm your password before continuing.')"
/>

<!-- Session Status -->
Expand All @@ -17,7 +17,7 @@
name="password"
required
autocomplete="new-password"
placeholder="Password"
:placeholder="__('Password')"
/>

<flux:button variant="primary" type="submit" class="w-full">{{ __('Confirm') }}</flux:button>
Expand Down
6 changes: 3 additions & 3 deletions resources/views/livewire/auth/forgot-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="flex flex-col gap-6">
<x-auth-header title="Forgot password" description="Enter your email to receive a password reset link" />
<x-auth-header :title="__('Forgot password')" :description="__('Enter your email to receive a password reset link')" />

<!-- Session Status -->
<x-auth-session-status class="text-center" :status="session('status')" />
Expand All @@ -20,7 +20,7 @@
</form>

<div class="space-x-1 text-center text-sm text-zinc-400">
Or, return to
<flux:link :href="route('login')" wire:navigate>log in</flux:link>
{{ __('Or, return to') }}
<flux:link :href="route('login')" wire:navigate>{{ __('log in') }}</flux:link>
</div>
</div>
8 changes: 4 additions & 4 deletions resources/views/livewire/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="flex flex-col gap-6">
<x-auth-header title="Log in to your account" description="Enter your email and password below to log in" />
<x-auth-header title="{{ __('Log in to your account') }}" description="{{ __('Enter your email and password below to log in') }}" />

<!-- Session Status -->
<x-auth-session-status class="text-center" :status="session('status')" />
Expand All @@ -26,7 +26,7 @@
name="password"
required
autocomplete="current-password"
placeholder="Password"
:placeholder="__('Password')"
/>

@if (Route::has('password.request'))
Expand All @@ -46,8 +46,8 @@

@if (Route::has('register'))
<div class="space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400">
Don't have an account?
<flux:link :href="route('register')" wire:navigate>Sign up</flux:link>
{{ __("Don't have an account?") }}
<flux:link :href="route('register')" wire:navigate>{{ __("Sign up") }}</flux:link>
</div>
@endif
</div>
12 changes: 6 additions & 6 deletions resources/views/livewire/auth/register.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="flex flex-col gap-6">
<x-auth-header title="Create an account" description="Enter your details below to create your account" />
<x-auth-header :title="__('Create an account')" :description="__('Enter your details below to create your account')" />

<!-- Session Status -->
<x-auth-session-status class="text-center" :status="session('status')" />
Expand All @@ -15,7 +15,7 @@
required
autofocus
autocomplete="name"
placeholder="Full name"
:placeholder="__('Full name')"
/>

<!-- Email Address -->
Expand All @@ -39,7 +39,7 @@
name="password"
required
autocomplete="new-password"
placeholder="Password"
:placeholder="__('Password')"
/>

<!-- Confirm Password -->
Expand All @@ -51,7 +51,7 @@
name="password_confirmation"
required
autocomplete="new-password"
placeholder="Confirm password"
:placeholder="__('Confirm password')"
/>

<div class="flex items-center justify-end">
Expand All @@ -62,7 +62,7 @@
</form>

<div class="space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400">
Already have an account?
<flux:link :href="route('login')" wire:navigate>Log in</flux:link>
{{ __('Already have an account?') }}
<flux:link :href="route('login')" wire:navigate>{{ __('Log in') }}</flux:link>
</div>
</div>
6 changes: 3 additions & 3 deletions resources/views/livewire/auth/reset-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="flex flex-col gap-6">
<x-auth-header title="Reset password" description="Please enter your new password below" />
<x-auth-header :title="__('Reset password')" :description="__('Please enter your new password below')" />

<!-- Session Status -->
<x-auth-session-status class="text-center" :status="session('status')" />
Expand All @@ -25,7 +25,7 @@
name="password"
required
autocomplete="new-password"
placeholder="Password"
:placeholder="__('Password')"
/>

<!-- Confirm Password -->
Expand All @@ -37,7 +37,7 @@
name="password_confirmation"
required
autocomplete="new-password"
placeholder="Confirm password"
:placeholder="__('Confirm password')"
/>

<div class="flex items-center justify-end">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/settings-heading.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="relative mb-6 w-full">
<flux:heading size="xl" level="1">Settings</flux:heading>
<flux:heading size="xl" level="1">{{ __('Settings') }}</flux:heading>
<flux:subheading size="lg" class="mb-6">{{ __('Manage your profile and account settings') }}</flux:subheading>
<flux:separator variant="subtle" />
</div>