@extends('layouts.app') @section('content')
@if (session('success') || session('status') === 'profile-updated' || session('status') === 'password-updated' || session('status') === 'verification-link-sent') @endif @if (session('error')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __('Profile Information') }}
@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.') }} @csrf

@endif
{{ __('Update Password') }}
@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
{{ __('Delete Account') }}

{{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }}

@endsection @section('script') @endsection