@extends('layouts.sidebar') @section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif @if($_SERVER['QUERY_STRING'] === '')

Account Settings

@foreach($profile as $profile) @if(env('REGISTER_AUTH') != 'verified' or auth()->user()->role == 'admin')
@csrf

Email

@endif

@csrf

Password

@csrf

Role

@if(env('ALLOW_USER_EXPORT') != false)



Export user data

Export your user data to transfer to a different instance.

@endif @if(env('ALLOW_USER_IMPORT') != false)
@csrf



Import user data

@endif

@endforeach @endif @if($_SERVER['QUERY_STRING'] === 'delete')

You are about to delete your account!

You are about to delete your account! This action cannot be undone.

@endif
@endsection