Hello everyone, I am not able to register the password with the hash in the database, I can register all the data but the password is not encrypted.
public function CadastroSalvar (Request $request) {
\App\Usuario::create($request->all(),[
$request = Input::get('nome'),
$request = Input::get('email'),
$request = Input::get(Hash::make('senha')),
$request = Input::get('telefone'),
$request = Input::get('data_nascimento'),
$request = Input::get('rg'),
$request = Input::get('funcao'),
])->save();
return redirect()->route('UsuarioCadastro');
}