@extends('layouts.account') @section('content')
Change my current account email
@if (!empty($account->email))

{{ $account->email }}

@else

No email yet

@endif
Change my password
@if ($account->passwords()->where('algorithm', 'SHA-256')->exists())

SHA-256 password configured

@else

MD5 password only

@endif
Delete my account

Remove your account from our service

@endsection