{{ __('Profile Information') }}

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

@csrf
{{-- ADD THIS enctype --}} @csrf @method('patch') {{-- Profile Picture Display and Upload --}}
{{ Auth::user()->name }} {{ __('Choose Photo') }} {{ Auth::user()->profile_photo_path ? basename(Auth::user()->profile_photo_path) : 'No file chosen' }}
@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