@extends('layouts.app') @section('title', 'Profile') @section('content')

Profile Information

@csrf @method('PATCH')
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@if (session('status') === 'profile-updated') Saved. @endif

Update Password

@csrf @method('PUT')
@error('current_password', 'updatePassword') {{ $message }} @enderror
@error('password', 'updatePassword') {{ $message }} @enderror
@if (session('status') === 'password-updated') Saved. @endif

Delete Account

Once your account is deleted, all of its resources and data will be permanently deleted.

@endsection