@if (session('message'))

{{ trans('auth.message') }}

{{ session('message') }}

@endif @if (session('success'))

{{ trans('auth.success') }}

{{ session('success') }}

@endif @if (session('status')) @if(session()->get('status') == 'wrong')

{{ trans('auth.someProblems') }}

{{ session('message') }}

@else

{{ trans('auth.success') }}

{{ session('status') }}

@endif @endif @if (session('notice'))

{{ trans('auth.noticeTitle') }}

{{ session('notice') }}

@endif @if (session('anError'))

{{ trans('auth.someProblems') }}

{{ session('anError') }}

@endif @if (session('error'))

{{ trans('auth.someProblems') }}

{{ session('error') }}

@endif @if (count($errors) > 0)

{{ trans('auth.someProblems') }}

@foreach ($errors->all() as $error) {{ $error }}
@endforeach

@endif