diff --git a/resources/views/components/button.blade.php b/resources/views/components/button.blade.php
index 7fe272e..588f71c 100644
--- a/resources/views/components/button.blade.php
+++ b/resources/views/components/button.blade.php
@@ -5,7 +5,7 @@
])
@php
- $buttonColor = in_array($title, ['Reset', 'Cancel','Delete']) ? 'bg-red-500' : 'bg-blue-500';
+ $buttonColor = $title === 'Cancel' ? 'bg-gray-500': (in_array($title, ['Reset', 'Delete']) ? 'bg-red-500' : 'bg-blue-500');
@endphp