@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


Export user data

@csrf



Import user data



@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