@extends('theme::layouts.app', ['title' => trans('auth.title|Login')]) @section('content')

@lang('auth.heading|Login')

@lang('auth.Please enter your details to sign in')

@if (session('status'))

{{ session('status') }}

@endif @if (session('warning'))

{{ session('warning') }}

@endif
@csrf
@if (old('email') && $errors->has('email'))

{{ $errors->first('email') }}

@endif
@lang('auth.Forgot Your Password?')
{{-- Visibility toggle can be added via JS if desired, keeping simple for now matching mockup input style --}}
@if (old('email') && $errors->has('password'))

{{ $errors->first('password') }}

@endif
@include('theme::partials.recaptcha', ['formId' => 'login-form', 'action' => 'login'])
@include('theme::pages.auth.social')

@lang("auth.Don't have an account yet?") @lang('auth.Create an account')

@endsection