@section('meta')
@show
@vite('resources/sass/pages/_auth.scss')
@csrf
{{ \config('other.title') }}
@if (Session::has('warning') || Session::has('success') || Session::has('info'))
@if (Session::has('warning'))
Warning: {{ Session::get('warning') }}
@endif @if (Session::has('info'))
Info: {{ Session::get('info') }}
@endif @if (Session::has('success'))
Success: {{ Session::get('success') }}
@endif
@endif
{{ __('auth.email') }}
@if (config('captcha.enabled')) @hiddencaptcha @endif
{{ __('auth.password-reset') }}
@if (Session::has('errors') || Session::has('status'))
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach @if (Session::has('status'))
{{ Session::get('status') }}
@endif
@endif