diff --git a/README.md b/README.md
index 8a79b02..e3c28ff 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,18 @@
# Nova Scroll Top
-On route change scroll to the top of the page. You can install this package via:
-`` composer require tanmuhittin/nova-scroll-top ``
\ No newline at end of file
+On route change scroll to the top of the page. On 422 error scroll to the first erroneous field.
You can install this package via:
+`` composer require tanmuhittin/nova-scroll-top ``
+
+If you do not want to use scroll to erroneous field trait or scroll to the top on page load trait you can set this on config file. First publish it via:
+`` php artisan vendor:publish --provider=TanMuhittin\NovaScrollTop\ScrollTopServiceProvider ``
+
+```
+ /**
+ * Scroll to the top of the page on route change
+ */
+ 'on_route_change' => true,
+
+ /**
+ * Scroll to the first erroneous field on 422 ajax errors
+ */
+ 'on_error' => true,
+```
\ No newline at end of file