Solution:
Just found the answer:
Now it called Accessors & Mutators
https://laravel.com/docs/5.2/eloquent-mutators
to hash password before you set it:
public function setPasswordAttribute($pass)
{
$this->attributes['password'] = Hash::make($pass);
}