In AngularJS, how can we set the min attribute of input type=\"date\" to current date (today\'s) ?
Yes you can set a minimum value. According to docs:
Arguments
min (optional) string - Sets the min validation error key if the value entered is less than min. This must be a valid ISO date string (yyyy-MM-dd).
EDIT To set the field to current date:
controller:
function Ctrl($scope)
{
$scope.date = new Date();
}
view:
Working example here.