<?php if(AccountApprovalList::isVerfiable($Account->AccountID) == false || $Account->VerificationStatus != Account::VERIFIED): ?>
    <div class="row">
        <div class="col-md-12">
            <div class="alert alert-danger">
                <?php if($Account->VerificationStatus == Account::VERIFIED): ?>
                    Awaiting Account Verification Documents Upload.
                <?php elseif($Account->VerificationStatus == Account::NOT_VERIFIED ): ?>
                    Account Pending Verification.
                <?php endif; ?>
            </div>
        </div>
    </div>
<?php endif; ?>
<?php if($Account->Blocked == 1): ?>
    <div class="row">
        <div class="col-md-12">
            <div class="alert alert-danger">
                Account Blocked.
            </div>
        </div>
    </div>
<?php endif; ?>
<?php if(Account::AuthIP($Account) && ($Account->IsCustomer==1 || $Account->IsVendor==1)): ?>
    <div  class="row">
        <div class="col-md-12">
            <div class="alert alert-warning">
                No IPs are setup under authentication rule.
            </div>
        </div>
    </div>
<?php endif; ?>