input date max today
<input type="date" class="form-control " name="tugash" value="{{ $end_time }}" max="{{ $max->time }}" min="{{ $min->time }}">
input date max today
<input type="date" class="form-control " name="tugash" value="{{ $end_time }}" max="{{ $max->time }}" min="{{ $min->time }}">
set min date field to current date
// Use Javascript
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0 so need to add 1 to make it 1!
var yyyy = today.getFullYear();
if(dd<10){
dd='0'+dd
}
if(mm<10){
mm='0'+mm
}
today = yyyy+'-'+mm+'-'+dd;
document.getElementById("datefield").setAttribute("min", today);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us