Undefined variable: users (View: C: \ Users \ Vitoria \ Desktop \ Laravel \ resources \
Panel.blade.php
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8"/>
<title>BEM VINDO ADMNISTRADOR</title>
</head>
<body>
<form method="POST" action="painel">
@foreach ($users as $user)
<h1> BEM VINDO ADMINISTRADOR!</h1>
<p>Nome: {{$user->Name}}</p> <br>
<p>E-mail: {{$user->User}}</p><br>
<p>Tipo: {{$user->Tipo}}</p> <br>
<p>Estado: {{$user->Ativo}}</p>
@endforeach
</form>
</body>
</html>
ClientsController
public function painel()
{
$user = \App\User::all();
return View('/painel');
}