- admin can edit, approve or reject broker registration - admin can edit, delete or impersonate as broker
13 lines
543 B
PHP
13 lines
543 B
PHP
<x-dashboard.admin.layout title="Manage Brokers">
|
|
<x-slot:heading>
|
|
<x-dashboard.page-heading
|
|
title="Manage Brokers"
|
|
description="Edit, Delete and Login as Broker"
|
|
/>
|
|
</x-slot:heading>
|
|
<div class="flex flex-col items-center justify-center space-y-4 md:space-y-8 px-4 pb-4 pt-0 md:px-8 md:pb-8">
|
|
<x-dashboard.admin.broker-approval :pending-brokers="$pendingBrokers" />
|
|
<x-dashboard.admin.active-broker :active-brokers="$activeBrokers" />
|
|
</div>
|
|
</x-dashboard.admin.layout>
|