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

c = c.replace('placeholder="Contoh: Sabun Mandi XYZ"', 'placeholder="Contoh: Tolak Angin"')
c = c.replace('placeholder="Contoh: Perawatan Tubuh"', 'placeholder="Contoh: Kesehatan"')

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