@extends('layouts.app') @section('content')

Account Login

@if ($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

{{ __('Forgot Password') }}

@if( config('captcha.enabled') || config('captcha.active.login') || ( config('captcha.triggers.login.enabled') && request()->session()->has('login_attempts') && request()->session()->get('login_attempts') >= config('captcha.triggers.login.attempts') ) )
{!! Captcha::display() !!}
@endif
@if( (config_cache('pixelfed.open_registration') && config('remote-auth.mastodon.enabled')) || (config('remote-auth.mastodon.ignore_closed_state') && config('remote-auth.mastodon.enabled')) )
@csrf
@endif @if(config_cache('pixelfed.open_registration'))

Register

@endif
@endsection @push('scripts') @endpush