App\Http\Controllers\Laralum\ProfileController::edit PHP Method

edit() public method

Show the profile edit page
public edit ( )
    public function edit()
    {
        $row = Laralum::loggedInUser();
        # Get all the data
        $data_index = 'profile';
        require 'Data/Edit/Get.php';
        return view('laralum/profile/index', ['row' => $row, 'fields' => $fields, 'confirmed' => $confirmed, 'empty' => $empty, 'encrypted' => $encrypted, 'hashed' => $hashed, 'masked' => $masked, 'table' => $table, 'code' => $code, 'wysiwyg' => $wysiwyg, 'relations' => $relations]);
    }
ProfileController