@extends('layouts.blank') @push('styles') @endpush @section('content')

Reset Password

Use this form to reset your password.

@if ($errors) @foreach($errors as $error) {{ $error }} @endforeach @endif
{{ __('Reset Password') }}
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@if ($errors->has('password')) {{ $errors->first('password') }} @else

Enter a new password between {{config('pixelfed.min_password_length')}}-72 characters long.

@endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if((bool) config_cache('captcha.enabled'))
{!! Captcha::display(['data-theme' => 'dark']) !!}
@if ($errors->has('h-captcha-response'))
{{ $errors->first('h-captcha-response') }}
@endif @endif
@endsection @push('scripts') @endpush @push('styles') @endpush