1
Look guys I’m not able to register the password with the hash in the bank, I can register all 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');
}  
vlw man, Thank you worked perfectly, thanks for the tip ^^
– Joan Marcos