I'm saving the passwords in the hashed bank, and now I want to view it in the view, because when I get the data in the bank it still has a hash when I'm going to display it.
Senha: $2y$10$G9poHdud5XJxgiQq1p0syOMEgE.wNxBwZWoA8ux.KxsnXPf4tDKni
(in the bank)
Senha: 123
(this is the password that I registered with the bank)
How the password is saved in the bank:
public function CadastroSalvar (Request $request) {
$data = $request->all();
$data['password'] = bcrypt($data['senha']); //primeiro campo é do banco e o outro é o campo da Request
$data = \App\Usuario::create($data);
return redirect()->route('UsuarioCadastro');
}