Hi varun.p,
To set set min date you need to set the startDate option.
Refer below sample.
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link href="bootstrap-datetimepicker.min.css" rel="stylesheet" type="text/css" />
<script src="bootstrap-datetimepicker.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$(".form_datetime").datetimepicker({
language: 'en',
format: 'dd/mm/yyyy - HH:ii p',
weekStart: 1,
startDate: new Date(), // Set min Date
endDate: "2020-12-31", // Set max Date
autoclose: 1,
startView: 2,
minView: 0,
maxView: 4,
todayBtn: 1,
todayHighlight: 1,
keyboardNavigation: true,
forceParse: 0,
minuteStep: 1,
pickerPosition: 'bottom-right',
viewSelect: 0,
showMeridian: 1,
inline: false,
sideBySide: true,
initialDate: new Date()
}).on('changeDate', function (ev) {
});
});
</script>
</head>
<body>
<input type="text" readonly class="form-control form_datetime" style="width: 250px" />
</body>
</html>
Screenshot
For more details refer below link.
https://www.malot.fr/bootstrap-datetimepicker/