$auth= \Auth\Auth_Login_SimpleAuth::_init(); $auth->create_user('samitrimal','samitrimal','example@yahoo.com',100,array('phone'=>3434343,'address'=>'gaurighat'));the error occoured
ErrorException [ Error ]: Call to a member function create_user() on a non-objecthow to create object of simple auth class to create the user?
$auth= \Auth::instance(); $auth->create_user('samitrimal', 'samitrimal', 'example@yahoo.com', 100, array('phone' => 3434343, 'address' => 'gaurighat'));
It looks like you're new here. If you want to get involved, click one of these buttons!