@extends('layouts.main') @section('title', 'Profile - Prolytics Connect') @section('content')
{{ strtoupper(substr($user->name, 0, 1)) }}

Profile Settings

Manage your account
@if(session('status')) @endif

Profile Information

Update your account's profile information and email address.

@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('company')
{{ $message }}
@enderror
@error('workspace_name')
{{ $message }}
@enderror
This will be used as your default workspace identifier.
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

Your email address is unverified.

Click the button below to re-send the verification email.
@endif

Change Password

Ensure your account is using a long, random password to stay secure.

@csrf @method('PUT')
@error('current_password', 'updatePassword')
{{ $message }}
@enderror
@error('password', 'updatePassword')
{{ $message }}
@enderror
@error('password_confirmation', 'updatePassword')
{{ $message }}
@enderror

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('modals') @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail()) @endif @endsection