with('error', Lang::get('admin/users/table.lock_passwords')); } else { // Declare the rules for the form validation $rules = array( 'current_password' => 'required|between:3,32', 'email' => 'required|email|unique:users,email,'.Auth::user()->email.',email', 'email_confirm' => 'required|same:email', ); // Create a new validator instance from our validation rules $validator = Validator::make(Input::all(), $rules); // If validation fails, we'll exit the operation now. if ($validator->fails()) { // Ooops.. something went wrong return Redirect::back()->withInput()->withErrors($validator); } // Grab the user $user = Auth::user(); // Check the user current password if (! $user->checkPassword(Input::get('current_password'))) { // Set the error message $this->messageBag->add('current_password', 'Your current password is incorrect'); // Redirect to the change email page return Redirect::route('change-email')->withErrors($this->messageBag); } // Update the user email $user->email = Input::get('email'); $user->save(); // Redirect to the settings page return Redirect::route('change-email')->with('success', 'Email successfully updated'); } } }