] * @since [v1.0] * @return \Illuminate\Contracts\View\View */ public function getIndex() { // Get the user information $user = Auth::user(); $location_list = Helper::locationsList(); return View::make('account/profile', compact('user'))->with('location_list', $location_list); } /** * Validates and stores the user's update data. * * @author [A. Gianotto] [] * @since [v1.0] * @return \Illuminate\Http\RedirectResponse */ public function postIndex() { // Grab the user $user = Auth::user(); // Update the user information $user->first_name = Input::get('first_name'); $user->last_name = Input::get('last_name'); $user->website = Input::get('website'); $user->location_id = Input::get('location_id'); $user->gravatar = Input::get('gravatar'); $user->locale = Input::get('locale'); if ((Gate::allows('self.two_factor')) && ((Setting::getSettings()->two_factor_enabled=='1') && (!config('app.lock_passwords')))) { $user->two_factor_optin = Input::get('two_factor_optin', '0'); } if (Input::file('avatar')) { $image = Input::file('avatar'); $file_name = str_slug($user->first_name."-".$user->last_name).".".$image->getClientOriginalExtension(); $path = public_path('uploads/avatars/'.$file_name); Image::make($image->getRealPath())->resize(84, 84)->save($path); $user->avatar = $file_name; } if (Input::get('avatar_delete') == 1 && Input::file('avatar') == "") { $user->avatar = null; } if ($user->save()) { return redirect()->route('profile')->with('success', 'Account successfully updated'); } return redirect()->back()->withInput()->withErrors($user->getErrors()); } }