David Curtner has over 16 years of work experience. David began their career in 2005 as Digital Marketing and Ecom Manager at Pinnacle Systems. In 2008, they joined SeeqPod, Inc. as Director of Monetization. David then moved to Avid Technology in 2009, where they served as Senior Sales Manager | WW E-Commerce. In 2013, they were appointed Head Of Marketing at Malwarebytes. In 2018, they joined Roku Inc. as Worldwide Direct Sales. Most recently, in 2022, they began their current role as Head of Corporate Strategy at Vector Space Biosciences.
<?php
namespace App\Http\Controllers;
use App\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
class UserController extends Controller
{
public function profile()
{
return view('user.profile');
}
public function update(Request $request)
{
$user = User::find(Auth::user()->id);
$user->name = $request->name;
$user->email = $request->email;
$user->save();
return redirect()->route('user.profile');
}
public function changePassword(Request $request)
{
$user = User::find(Auth::user()->id);
$user->password = Hash::make($request->password);
$user->save();
return redirect()->route('user.profile');
}
}
Sign up to view 1 direct report
Get started