@section('meta') @show @vite('resources/sass/pages/_auth.scss')
@csrf @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

@if (config('captcha.enabled')) @hiddencaptcha @endif @if (Session::has('errors'))
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif