First we need to install Brew, the dependency for the Mac:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
MacOS Monterney comes without PHP. Valet+ uses a special version of PHP that you can install like this:
var passField = $form.find('input[data-name=password]'); | |
passField.wrap("<div class='ff_input-group'></div>"); | |
passField.after('<div class="ff_input-group-append"><span class="ff_input-group-text"><i style="cursor:pointer;" class="dashicons dashicons-hidden toggle-password"> </i></span></div>'); | |
$form.find(".toggle-password").click(function() { | |
$(this).toggleClass("dashicons-visibility dashicons-hidden"); | |
if (passField.attr("type") == "password") { | |
passField.attr("type", "text"); | |
} else { |