@extends('layouts.app') @section('content')
@if (session('status')) @endif
@csrf
@error('email') {{ $message }} @enderror
@if (config('SETTINGS::RECAPTCHA:ENABLED') == 'true')
{!! htmlFormSnippet() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif

{{ __('Login') }}

{{-- imprint and privacy policy --}}
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true") {{ __('Imprint') }} | @endif @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true") {{ __('Privacy') }} @endif @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true") | {{ __('Terms of Service') }} @endif
@endsection