@if(!empty($isGoogle))
{{-- ✅ Google: mostrar texto completo (no input) --}}
{{ $user->email }}
{{ __('Email is managed by Google for this account.') }}
@else
{{-- ✅ Normal: input editable sin truncate --}}
@endif
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())
{{ __('Your email address is unverified.') }}
@if (session('status') === 'verification-link-sent')
{{ __('A new verification link has been sent to your email address.') }}
@endif
@endif