﻿file = r'resources\views\panel-tests\divisi\create.blade.php'
with open(file, 'r', encoding='utf-8') as f:
    c = f.read()

c = c.replace('Contoh: Panel Test Sabun XYZ - Maret 2026', 'Contoh: Panel Test Tolak Angin - Maret 2026')

with open(file, 'w', encoding='utf-8') as f:
    f.write(c)
print("OK!")
