name = $this->user->name; } public function updateUserInformation() { $this->validate(); $this->user->name = $this->name; $this->user->password = Hash::make($this->password); $this->user->email_verified_at = now(); $this->user->save(); Auth::login($this->user, true); return redirect(route('portfolio.show', ['portfolio' => $this->portfolio->id])); } }; ?>
{{ __('Get Started') }}