$('#yourInputId').datepicker({
startDate: new Date(),
format: 'dd/mm/yyyy', //you can change date format to any
autoclose: true,
todayHighlight: true,
startDate: new Date(), //this will be today's date
endDate: new Date(new Date().setDate(new Date().getDate() + 5))
});