{{-- title for user profile page --}}

{{ __('profile.title') }}

{{ __('profile.change_profile') }}

{{ __('profile.change_your_profile_picture_from_here') }}

Profile Image
@csrf @method('PATCH')

{{ __('profile.or_select_a_default_avatar') }}

@foreach ($defaultAvatars as $avatar) @endforeach

{{ __('profile.allowed_jpg_gif_or_png_max_size_of_2mb') }}

@if ($errors->has('avatar')) {{ $errors->first('avatar') }} @endif

{{ __('profile.update_password') }}

{{ __('profile.ensure_your_account_is_using_a_long_random_password_to_stay_secure') }}

@csrf @method('put')

{{ __('profile.save') }} @if (session('status') === 'password-updated')

{{ __('Saved.') }}

@endif

{{ __('profile.profile_information') }}

{{ __('profile.update_your_account_s_profile_information_and_email_address') }}

@csrf
@csrf @method('patch')
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

{{ __('profile.your_email_address_is_unverified') }}

@if (session('status') === 'verification-link-sent')

{{ __('profile.a_new_verification_link_has_been_sent_to_your_email_address') }}

@endif
@endif


{{ __('profile.save') }} @if (session('status') === 'profile-updated')

{{ __('profile.saved') }}

@endif