Can you show us your user model relationships you wrote on your user model for Organization and Profile? A user hasOne organization and one Profile.
with
$users = User::with(['Organization', 'Profile'])->where('id', Auth::user()->id)->get();
this line of code I'm assuming that your relationship on your User model is Something like
public function Organization()
{
$this->hasOne('App\Organization','user_id');
}
public function Profile()
{
$this->hasOne('App\Profile','user_id');
}
So you have to access it something like:
$user->Organization->organization_name