Kleines Update: Mir ist aufgefallen wenn ein User sein Passwort löscht konnte er den Button dennoch betätigen.
Dieses habe ich so gelöst
$('input[type="submit"]').prop('disabled', true);
$('input[type="password"]').keyup(function() {
if($(this).val().length >= 6) {
$('input[type="submit"]').prop('disabled', false);
}
if($(this).val().length <= 6) {
$('input[type="submit"]').prop('disabled', true);
}
});