Stevemo\Cpanel\Controllers\UsersController::update PHP Метод

update() публичный Метод

Update user information
Автор: Steve Montambeault
public update ( integer $id ) : Illuminate\Http\RedirectResponse
$id integer
Результат Illuminate\Http\RedirectResponse
    public function update($id)
    {
        try {
            $credentials = Input::except('groups');
            $credentials['groups'] = Input::get('groups', array());
            $credentials['id'] = $id;
            if ($this->userForm->update($credentials)) {
                return Redirect::route('cpanel.users.index')->with('success', Lang::get('cpanel::users.update_success'));
            }
            return Redirect::back()->withInput()->withErrors($this->userForm->getErrors());
        } catch (UserNotFoundException $e) {
            return Redirect::route('cpanel.users.index')->with('error', $e->getMessage());
        }
    }