{{ __('Profile Information') }}

{{ __("Update your account's profile information and email address.") }}

@if(!empty($isGoogle))
{{ __('Your account is linked to Google. Email changes are disabled to keep your Google login working.') }}
@endif
@csrf
@csrf @method('patch') {{-- Name --}}
{{-- Company name (Tenant) --}}
{{-- Email --}}
@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
{{ __('Save') }} @if (session('status') === 'profile-updated')

{{ __('Saved.') }}

@endif