register() public method

Register a new user
Author: Steve Montambeault
public register ( array $credentials, boolean $activate ) : boolean
$credentials array
$activate boolean
return boolean
Esempio n. 1
0
 /**
  * Register user
  *
  * @author Steve Montambeault
  * @link   http://stevemo.ca
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function postRegister()
 {
     if ($this->userForm->register(Input::all(), false)) {
         return Redirect::route('cpanel.login')->with('success', Lang::get('cpanel::users.register_success'));
     }
     return Redirect::back()->withInput()->withErrors($this->userForm->getErrors());
 }