{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Shop Verification - {{ brand_name }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Shop Verification Details

← Back to Registry {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

{{ shop.name }}

Brand {{ shop.brand or '-' }}
Shop Code {{ shop.code }}
Address / Location {{ shop.address or '-' }}
Business Phone {{ shop.phone or '-' }}
Business Email {{ shop.email or '-' }}
Business Type {{ shop.business_type or '-' }}
Owner / Manager {{ shop.owner_name or '-' }}
Verification {% if shop.verified %} Verified {% else %} Unverified {% endif %}
Status {{ shop.status|capitalize }}
Registered On {{ shop.created_at }}
{% if shop.verified_at %}
Verified At {{ shop.verified_at }}
{% endif %}

Admin Users & Passwords

As server owner, you can view admin credentials and reset passwords when requested.

{% for admin in admins %}
{{ admin[1] }} {% if admin[2] %} ({{ admin[2] }}) {% endif %}
ID: {{ admin[0] }}
To view or reset password, use the form below.
{% else %}

No admin users found.

{% endfor %}

Verification Controls

{% if shop.verified %} {% else %} {% endif %}

Change Status

{% if shop.id != 1 %}

Preserve Shop Data

This action suspends the shop but keeps users, products, sales, customers, and server registration details untouched.

{% endif %}
{% endblock %}