@csrf @method('patch')
@if($errors->get('name'))
{{ $errors->get('name')[0] }}
@endif
@if($errors->get('email'))
{{ $errors->get('email')[0] }}
@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
@if (session('status') === 'profile-updated') {{ __('Changes Saved.') }} @endif