@extends('pages.layouts.app') @section('content') @push('styles') @endpush

{{ __('Profile Information') }}

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

@csrf
@csrf @method('patch')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@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') {{ __('Saved.') }} @endif

{{ __('Update Password') }}

{{ __('Ensure your account is using a long, random password to stay secure.') }}

@csrf @method('put')
@if ($errors->updatePassword->has('current_password'))
{{ $errors->updatePassword->first('current_password') }}
@endif
@if ($errors->updatePassword->has('password'))
{{ $errors->updatePassword->first('password') }}
@endif
@if ($errors->updatePassword->has('password_confirmation'))
{{ $errors->updatePassword->first('password_confirmation') }}
@endif
@if (session('status') === 'password-updated') {{ __('Saved.') }} @endif
@endsection