actingAs($user = User::factory()->create()); $response = $this->put('/user/profile-information', [ 'first_name' => 'Test', 'last_name' => 'Name', 'email' => 'test@example.com', ]); $this->assertEquals('Test Name', $user->fresh()->name); $this->assertEquals('test@example.com', $user->fresh()->email); } }