diff --git a/priv/repo/seeds.exs b/priv/repo/seeds.exs
index 613333b..a38dc74 100644
--- a/priv/repo/seeds.exs
+++ b/priv/repo/seeds.exs
@@ -9,3 +9,21 @@
 #
 # We recommend using the bang functions (`insert!`, `update!`
 # and so on) as they will fail if something goes wrong.
+
+RealEstate.Accounts.register_admin(%{
+  email: "admin@company.com",
+  password: "123456789abc",
+  password_confirmation: "123456789abc"
+})
+
+RealEstate.Accounts.register_user(%{
+  email: "user1@company.com",
+  password: "123456789abc",
+  password_confirmation: "123456789abc"
+})
+
+RealEstate.Accounts.register_user(%{
+  email: "user2@company.com",
+  password: "123456789abc",
+  password_confirmation: "123456789abc"
+})