public function create(array $attributes)
 {
     if (empty($attributes['local_id'])) {
         $role = $this->localRoleRepository->findWhere(['title' => 'USER']);
         if (!empty($role)) {
             $attributes['local_id'] = $role->first()->id;
         }
     }
     return parent::create($attributes);
 }