Settings - {{ $account->username }} Settings @php $serverIp = $account->node?->ip_address ?? '161.97.138.149'; $sftpCommand = "sftp {$account->username}@{$serverIp}"; @endphp
@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif @if($canChangePassword)

SFTP Password

Change the shared SFTP password for this hosting account. Team developers do not see or manage this password.

@csrf
@endif

SFTP Key Access

@if ($teamMembership)

Add your SSH public key to connect over SFTP as {{ $account->username }}. Removing you from the team automatically removes this key.

@else

Owners connect with the shared account password. Team developers add their own SSH public key here after they sign in.

@endif
@if ($teamMembership?->ssh_key_installed_at) Key active @endif
@if ($teamMembership)
@csrf

Use an OpenSSH public key for SFTP access to this hosting account.

@if ($teamMembership->ssh_key_installed_at)

Last installed {{ $teamMembership->ssh_key_installed_at->diffForHumans() }}.

@endif
@if ($teamMembership->hasSshAccessKey()) @endif @else
Developers on your team use their own SSH keys instead of the shared password, so removing them from the team immediately cuts off SFTP access.
@endif

SFTP Connection

Connect with any SFTP client

{{ $sftpCommand }}

Host

{{ $serverIp }}

Port

22

Username

{{ $account->username }}

Authentication

{{ $teamMembership ? 'SSH key' : 'Password' }}

Account Information

Account Type

{{ ucfirst($account->type) }} Hosting

Product

{{ $account->product->name ?? 'N/A' }}

PHP Version

{{ $account->php_version ?? '8.2' }}

Status

{{ ucfirst($account->status) }}