Index: app/Models/User.php
===================================================================
--- app/Models/User.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ app/Models/User.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -9,141 +9,157 @@
 class User extends Authenticatable
 {
-	use Notifiable;
+    use Notifiable;
 
-	protected $table = "users";
+    protected $table = "users";
 
-	/**
-	 * The attributes that are mass assignable.
-	 *
-	 * @var array
-	 */
-	protected $fillable = [
-		"name",
-		"surname",
-		"username",
-		"password",
-		"email",
+    /**
+     * The attributes that are mass assignable.
+     *
+     * @var array
+     */
+    protected $fillable = [
+        "name",
+        "surname",
+        "username",
+        "password",
+        "email",
         "country_code",
         "mobile_number",
-		"role_id"
-	];
+        "role_id"
+    ];
 
-	/**
-	 * The attributes that should be hidden for arrays.
-	 *
-	 * @var array
-	 */
-	protected $hidden = [
-		"password",
-		"remember_token",
-		"is_active"
-	];
+    /**
+     * The attributes that should be hidden for arrays.
+     *
+     * @var array
+     */
+    protected $hidden = [
+        "password",
+        "remember_token",
+        "is_active"
+    ];
 
-	/**
-	 * The attributes that should be cast to native types.
-	 *
-	 * @var array
-	 */
-	protected $casts = [];
+    /**
+     * The attributes that should be cast to native types.
+     *
+     * @var array
+     */
+    protected $casts = [];
 
 
-	public function role() {
-		return $this->belongsTo(Role::class);
-	}
+    public function role()
+    {
+        return $this->belongsTo(Role::class);
+    }
 
-	public function userProfile() {
+    public function userProfile()
+    {
         return $this->hasOne(UserProfile::class);
     }
 
-	public function post() {
-		return $this->hasMany(Post::class);
-	}
+    public function post()
+    {
+        return $this->hasMany(Post::class);
+    }
 
-	public function comments()
-	{
-		return $this->hasManyThrough(Comment::class, Post::class);
-	}
+    public function comments()
+    {
+        return $this->hasManyThrough(Comment::class, Post::class);
+    }
 
-	public function hasPermission($permission, $id = null, $any = false) {
+    public function hasPermission($permission, $id = null, $any = false)
+    {
 
-		$userPermissions = null;
-		$flag = null;
+        $userPermissions = null;
+        $flag = null;
 
-		if($id != null) $userPermissions = User::find($id)->role->permission->pluck("name");
-		else $userPermissions = $this->role->permission->pluck("name");
+        if ($id != null) $userPermissions = User::find($id)->role->permission->pluck("name");
+        else $userPermissions = $this->role->permission->pluck("name");
 
-		if($any) {
-			foreach($permission as $p) {
-				if($this->hasPermission($p)) {
-					return true;
-				}
-			}
-			return false;
-		}
+        if ($any) {
+            foreach ($permission as $p) {
+                if ($this->hasPermission($p)) {
+                    return true;
+                }
+            }
+            return false;
+        }
 
-		if(is_string($permission)) {
-			return $userPermissions->contains($permission);
-		}
+        if (is_string($permission)) {
+            return $userPermissions->contains($permission);
+        }
 
-		if(is_array($permission)) {
-			foreach($permission as $p) {
-				if($this->hasPermission($p)) {
-					$flag = true;
-				} else {
-					$flag = false; break;
-				}
-			}
-		}
+        if (is_array($permission)) {
+            foreach ($permission as $p) {
+                if ($this->hasPermission($p)) {
+                    $flag = true;
+                } else {
+                    $flag = false;
+                    break;
+                }
+            }
+        }
 
-		return $flag;
-	}
+        return $flag;
+    }
 
-	public function hasAllPermissions(array $permissions = array(), $id = null, $any = false) {
-		return $this->hasPermission($permissions, $id, $any);
-	}
+    public function hasAllPermissions(array $permissions = array(), $id = null, $any = false)
+    {
+        return $this->hasPermission($permissions, $id, $any);
+    }
 
-	public function hasAnyPermission(array $permissions = array(), $id = null, $any = true) {
-		return $this->hasPermission($permissions, $id, $any);
-	}
+    public function hasAnyPermission(array $permissions = array(), $id = null, $any = true)
+    {
+        return $this->hasPermission($permissions, $id, $any);
+    }
 
-	public function hasRole($role) {
-		return $role === $this->role->name;
-	}
+    public function hasRole($role)
+    {
+        return $role === $this->role->name;
+    }
 
-	public function isAdmin() {
-		return $this->hasRole("admin");
-	}
+    public function isAdmin()
+    {
+        return $this->hasRole("admin");
+    }
 
-	public function isAdminOrEditor() {
-		return $this->hasRole("admin") || $this->hasRole("editor");
-	}
+    public function isAdminOrEditor()
+    {
+        return $this->hasRole("admin") || $this->hasRole("editor");
+    }
 
-	public function getFullName($id = null) {
+    public function getFullName($id = null)
+    {
 
-		if($id != null) {
-			$user = User::find($id);
-			return $user->name . " " . $user->surname;
-		}
+        if ($id != null) {
+            $user = User::find($id);
+            return $user->name . " " . $user->surname;
+        }
 
-		return $this->name . " " . $this->surname;
-	}
+        return $this->name . " " . $this->surname;
+    }
 
-	public function getPostsCount($id) {
-		return Post::where("user_id", $id)->count();
-	}
+    public function getPostsCount($id)
+    {
+        return Post::where("user_id", $id)->count();
+    }
 
-	public function generateTemporaryPassword($length = 20) {
-		return bcrypt(Str::random($length));
-	}
+    public function generateTemporaryPassword($length = 20)
+    {
+        return bcrypt(Str::random($length));
+    }
 
-	public function generateSecurityCode($min = 10000, $max = 99999) {
-		return rand($min, $max);
-	}
+    public function generateSecurityCode($min = 10000, $max = 99999)
+    {
+        return rand($min, $max);
+    }
 
-	public function generateVerifyToken($length = 32) {
-		return Str::random($length);
-	}
+    public function generateVerifyToken($length = 32)
+    {
+        return Str::random($length);
+    }
 
-    public function generateProfileLink($name, $surname) {
+    public function generateProfileLink($name, $surname)
+    {
 
         $profileLinks = UserProfile::pluck("profile_link")->toArray();
@@ -151,5 +167,5 @@
 
         foreach ($profileLinks as $profileLink) {
-            if($profileLink == $link) {
+            if ($profileLink == $link) {
                 $link .= "-" . strtolower(Str::random(10));
                 break;
@@ -160,5 +176,6 @@
     }
 
-    public function generateTechnoblogEmail($name, $surname) {
+    public function generateTechnoblogEmail($name, $surname)
+    {
 
         $emails = UserProfile::pluck("technoblog_email")->toArray();
@@ -166,5 +183,5 @@
 
         foreach ($emails as $email) {
-            if($email == $newEmail) {
+            if ($email == $newEmail) {
                 $position = strlen($name) + strlen($surname) + 1;
                 $id = UserProfile::latest("id")->first()->id + 1;
Index: resources/views/auth/create_password.blade.php
===================================================================
--- resources/views/auth/create_password.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/auth/create_password.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -10,5 +10,5 @@
 					<div class="col col-login mx-auto">
 						<div class="text-center mb-6">
-							<img src="/assets/images/logo1.png">
+							<img src="/assets/images/logo.png">
 						</div>
 
Index: resources/views/auth/forgot.blade.php
===================================================================
--- resources/views/auth/forgot.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/auth/forgot.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -9,5 +9,5 @@
 				<div class="row">
 					<div class="col-lg-12 text-center">
-						<img src="{{ asset("assets/images/logo1.png") }}">
+						<img src="{{ asset("assets/images/logo.png") }}">
 					</div>
 					<div class="col col-login mx-auto pt-5 pb-7">
Index: resources/views/auth/login.blade.php
===================================================================
--- resources/views/auth/login.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/auth/login.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -10,5 +10,5 @@
 					<div class="col col-login mx-auto">
 						<div class="text-center mb-6">
-							<img src="/assets/images/logo1.png">
+							<img src="/assets/images/logo.png">
 						</div>
 						<form class="card" action="{{ route("auth.login") }}" method="post" accept-charset="utf-8">
Index: resources/views/auth/verify_new_email.blade.php
===================================================================
--- resources/views/auth/verify_new_email.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/auth/verify_new_email.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -10,5 +10,5 @@
 					<div class="col col-login mx-auto">
 						<div class="text-center mb-6">
-							<img src="/assets/images/logo1.png">
+							<img src="/assets/images/logo.png">
 						</div>
 
Index: resources/views/fragments/auth/head.blade.php
===================================================================
--- resources/views/fragments/auth/head.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/fragments/auth/head.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -10,6 +10,6 @@
 <meta name="HandheldFriendly" content="True">
 <meta name="MobileOptimized" content="320">
-<link rel="icon" href="{{ asset("assets/images/logo1.png") }}" type="image/x-icon" />
-<link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo1.png") }}" />
+<link rel="icon" href="{{ asset("assets/images/logo.png") }}" type="image/x-icon" />
+<link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo.png") }}" />
 
 <title>@yield("title")</title>
Index: resources/views/fragments/dashboard/head.blade.php
===================================================================
--- resources/views/fragments/dashboard/head.blade.php	(revision 0924b6c75483e6a4ae83e08487635bdc25436fed)
+++ resources/views/fragments/dashboard/head.blade.php	(revision c433da6c016aaef7f6c2e4c328cda1a31412b885)
@@ -11,6 +11,6 @@
 <meta name="HandheldFriendly" content="True">
 <meta name="MobileOptimized" content="320">
-<link rel="icon" href="{{ asset("assets/images/logo1.png") }}" type="image/x-icon" />
-<link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo1.png") }}" />
+<link rel="icon" href="{{ asset("assets/images/logo.png") }}" type="image/x-icon" />
+<link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo.png") }}" />
 
 <title>@yield("title")</title>
