@if (count($this->accounts) == 0)
{{ __('You have no connected accounts.') }}
@else
{{ __('Your connected accounts.') }}
@endif
{{ __('You are free to connect any social accounts to your profile and may remove any connected accounts at any time. If you feel any of your connected accounts have been compromised, you should disconnect them immediately and change your password.') }}
@foreach ($this->providers as $provider)
@if ($account = $this->accounts->where('provider_name', $provider)->first())
@if ($this->accounts->count() > 1 || ! is_null($this->user->password))
{{ __('Remove') }}
@endif
@else
{{ __('Connect') }}
@endif
@endforeach
{{ __('Remove Connected Account') }}
{{ __('Please confirm your removal of this account - this action cannot be undone.') }}
{{ __('Nevermind') }}
{{ __('Remove Connected Account') }}