1
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
ssww23
2026-03-17 01:59:00 +03:00
parent 93a655235a
commit 0ee9f05416
48 changed files with 1193 additions and 413 deletions

View File

@@ -3,15 +3,15 @@
@section('content')
@include('partials.breadcrumbs', [
'items' => [
['label' => 'Главная', 'url' => route('home')],
['label' => 'Вход', 'url' => null],
['label' => __('Главная'), 'url' => route('home')],
['label' => __('Вход'), 'url' => null],
],
])
<section class="pc-section pc-auth-section">
<div class="pc-section-title">
<h2>Вход</h2>
<p>Введите email и пароль для доступа к заказам и профилю.</p>
<h2>{{ __('Вход') }}</h2>
<p>{{ __('Введите email и пароль для доступа к заказам и профилю.') }}</p>
</div>
<form class="pc-card pc-form pc-auth-form" method="post" action="{{ route('login.attempt') }}">
@@ -21,20 +21,20 @@
<input type="email" name="email" value="{{ old('email') }}" required>
</label>
<label>
Пароль
{{ __('Пароль') }}
<input type="password" name="password" required>
</label>
<label>
Капча: решите пример {{ $captchaQuestion }}
{{ __('Капча: решите пример :question', ['question' => $captchaQuestion]) }}
<input type="text" name="captcha" inputmode="numeric" autocomplete="off" required>
</label>
<label class="pc-checkbox">
<input type="checkbox" name="remember" value="1" @checked(old('remember'))>
<span>Запомнить меня</span>
<span>{{ __('Запомнить меня') }}</span>
</label>
<div class="pc-product-actions">
<button class="pc-btn primary" type="submit">Войти</button>
<a class="pc-btn ghost" href="{{ route('register') }}">Создать аккаунт</a>
<button class="pc-btn primary" type="submit">{{ __('Войти') }}</button>
<a class="pc-btn ghost" href="{{ route('register') }}">{{ __('Создать аккаунт') }}</a>
</div>
</form>
</section>