Merge branch 'lang'
This commit is contained in:
commit
6325109e80
20 changed files with 346 additions and 15 deletions
|
|
@ -1,17 +1,17 @@
|
|||
<x-layout name="auth">
|
||||
|
||||
<h1 class="text-gray-500 text-3xl text-center mb-4">Login</h1>
|
||||
<h1 class="text-gray-500 text-3xl text-center mb-4">{{ __('Login') }}</h1>
|
||||
|
||||
<x-form action="{{ route('auth.login.store') }}">
|
||||
<x-input name="username" placeholder="{{ __('Username') }}" class="mb-2"/>
|
||||
<x-input-password placeholder="{{ __('Password') }}" class="mb-2" />
|
||||
<x-button element="input" type="submit" name="submit" value="Login" class="w-full" />
|
||||
<x-button element="input" type="submit" name="submit" value="{{ __('Login') }}" class="w-full" />
|
||||
</x-form>
|
||||
|
||||
@if (config('services.discord.client_id'))
|
||||
<div class="flex items-center justify-between my-4">
|
||||
<div class="bg-gray-200 h-px w-full"></div>
|
||||
<div class="text-gray-400 mx-4">OR</div>
|
||||
<div class="text-gray-400 mx-4 uppercase">{{ __('or') }}</div>
|
||||
<div class="bg-gray-200 h-px w-full"></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Reference in a new issue