@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'] === '')

{{__('messages.Account Settings')}}

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

Email

@endif

@csrf

{{__('messages.Password')}}

@csrf

Role

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



{{__('messages.Export user data')}}

{{__('messages.Export your user data')}}

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



{{__('messages.Import user data')}}

@endif

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

{{__('messages.You are about to delete')}}

{{__('messages.You are about to delete This action cannot be undone')}}

@endif
@endsection