diff --git a/views/product.ejs b/views/product.ejs
index f0d89b1fa9c4e22169fa0e5a56fd8ca6eb1f7563..469296636f8341d2d3c77010f63a6571f5f43e14 100644
--- a/views/product.ejs
+++ b/views/product.ejs
@@ -1,25 +1,25 @@
 <!DOCTYPE html>
-<html lang="th">
+<html lang="en">
 <head>
     <meta charset="UTF-8">
-    <title>รายการสินค้า</title>
+    <title>Product List</title>
 </head>
 <body>
-    <h2>รายการสินค้า</h2>
-    <a href="/products/add">เพิ่มสินค้า</a>
+    <h2>Product List</h2>
+    <a href="/products/add">Add Product</a>
     <table border="1">
         <tr>
-            <th>รูป</th>
-            <th>ชื่อสินค้า</th>
-            <th>ราคา</th>
-            <th>จำนวน</th>
-            <th>คำบรรยาย</th>
+            <th>Image</th>
+            <th>Product Name</th>
+            <th>Price</th>
+            <th>Stock</th>
+            <th>Description</th>
         </tr>
         <% products.forEach(product => { %>
             <tr>
                 <td><img src="<%= product.image %>" width="100"></td>
                 <td><%= product.name %></td>
-                <td><%= product.price %> บาท</td>
+                <td><%= product.price %> THB</td>
                 <td><%= product.stock %></td>
                 <td><%= product.description %></td>
             </tr>
diff --git a/views/product_add.ejs b/views/product_add.ejs
index b6c741c9886609effba55e2c40d14a01b7c1f0e1..7d354ea3c0d75f13b70b45a06f0eba2a70e6ccb4 100644
--- a/views/product_add.ejs
+++ b/views/product_add.ejs
@@ -1,29 +1,29 @@
 <!DOCTYPE html>
-<html lang="th">
+<html lang="en">
 <head>
     <meta charset="UTF-8">
-    <title>เพิ่มสินค้า</title>
+    <title>Add Product</title>
 </head>
 <body>
-    <h2>เพิ่มสินค้า</h2>
+    <h2>Add Product</h2>
     <form action="/products/add" method="POST" enctype="multipart/form-data">
-        <label>ชื่อสินค้า:</label>
+        <label>Product Name:</label>
         <input type="text" name="name" required>
         <br>
-        <label>ราคา:</label>
+        <label>Price:</label>
         <input type="number" name="price" required>
         <br>
-        <label>จำนวนสินค้า:</label>
+        <label>Stock Quantity:</label>
         <input type="number" name="stock" required>
         <br>
-        <label>คำบรรยายสินค้า:</label>
+        <label>Product Description:</label>
         <textarea name="description" required><%= product ? product.description : "" %></textarea>
         <br>
-        <label>เลือกไฟล์รูปสินค้า:</label>
+        <label>Select Product Image:</label>
         <input type="file" name="image" required>
         <br>
         
-        <button type="submit">เพิ่มสินค้า</button>
+        <button type="submit">Add Product</button>
     </form>
 </body>
 </html>
diff --git a/views/product_edit.ejs b/views/product_edit.ejs
index a54f07b40c43dd0a1a15f8baec91b8d429ecd5a3..b0680d4fffddd9621d7fdc83307a68a98935c270 100644
--- a/views/product_edit.ejs
+++ b/views/product_edit.ejs
@@ -1,38 +1,38 @@
 <!DOCTYPE html>
-<html lang="th">
+<html lang="en">
 <head>
     <meta charset="UTF-8">
-    <title>แก้ไขสินค้า</title>
+    <title>Edit Product</title>
 </head>
 <body>
-    <h2>แก้ไขสินค้า</h2>
+    <h2>Edit Product</h2>
     <form action="/products/edit/<%= product.id %>" method="POST" enctype="multipart/form-data">
 
-        <label>รหัสสินค้า:</label>
+        <label>Product ID:</label>
         <input type="text" name="product_id" value="<%= product.id %>" readonly>
         <br>
 
-        <label>ชื่อสินค้า:</label>
+        <label>Product Name:</label>
         <input type="text" name="name" value="<%= product.name %>" required>
         <br>
 
-        <label>ราคา:</label>
+        <label>Price:</label>
         <input type="number" name="price" value="<%= product.price %>" required>
         <br>
 
-        <label>จำนวนสินค้า:</label>
+        <label>Stock Quantity:</label>
         <input type="number" name="stock" value="<%= product.stock %>" required>
         <br>
 
-        <label>คำบรรยายสินค้า:</label>
+        <label>Product Description:</label>
         <textarea name="description" required><%= product.description %></textarea>
         <br>
 
-        <label>เปลี่ยนรูปภาพ (อัพโหลดใหม่ถ้าต้องการ):</label>
+        <label>Change Image (Upload a new one if needed):</label>
         <input type="file" name="image">
         <br>
 
-        <button type="submit">บันทึกการแก้ไข</button>
+        <button type="submit">Save Changes</button>
     </form>
 </body>
 </html>