﻿files = {
    'super_admin': r'resources\views\dashboard\super_admin.blade.php',
    'marketing_admin': r'resources\views\dashboard\marketing_admin.blade.php',
    'manager': r'resources\views\dashboard\manager.blade.php',
}
for name, path in files.items():
    with open(path, 'r', encoding='utf-8') as f:
        c = f.read()
    import re
    matches = [(m.start(), c[max(0,m.start()-20):m.start()+100]) for m in re.finditer(r'col-sm-', c)]
    print(f"\n=== {name} ({len(matches)} matches) ===")
    for pos, ctx in matches:
        print(repr(ctx))
