Create new translations and update existing views.

This commit is contained in:
2024-11-27 12:22:06 +01:00
parent 31454b2980
commit 9d2eddbcf1
17 changed files with 159 additions and 52 deletions

View File

@@ -35,14 +35,14 @@
href="{{ url('/dashboard') }}"
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
>
Dashboard
{{ __('common.Dashboard') }}
</a>
@else
<a
href="{{ route('login') }}"
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
>
Log in
{{ __('user.Log in') }}
</a>
@if (Route::has('register'))
@@ -50,7 +50,7 @@
href="{{ route('register') }}"
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
>
Register
{{ __('user.Register') }}
</a>
@endif
@endauth