@extends('layouts.app') @section('content') @if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif

Manage Aliases

Back to Settings

If you want to move from another account to this one, you can create an alias here first.

This alias is needed before you can move your followers from the old account to this one. Don't worry, making this change is safe and can be undone. The process of moving the account starts from the old one.

Your followers will be migrated to your new account, and in some instances your posts too! For more information on Aliases and Account Migration, visit the Help Center.

Old Account

oldUsername@example.org

Old Account

oldUsername2@example.net


We support migration to and from Pixelfed, Mastodon and most other platforms that use the Mastodon Account Migration extension.


@csrf

Enter the username@domain of your old account

Aliases

@if(count($aliases)) @foreach($aliases as $alias)
{{ $alias->acct }}
@csrf
@endforeach @else

No aliases found!

@endif
@endsection