@php $magicLinkEnabled = config('drama.magiclink_enabled'); $emailSubmitted = session('status') && $magicLinkEnabled; @endphp
@if($emailSubmitted) @else
@if($magicLinkEnabled)
@csrf
{{ __('A magic login link will be sent to your email. No password required!') }}
{{ __('Send Magic Link') }}
@else
@if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif
{{ __('Log in') }}
@endif @if (Route::has('register'))
{{ __('Don\'t have an account?') }} {{ __('Sign up') }}
@endif
@endif