I tried this:
\" class=\"date\" name=\"start\" REQUIRED>
H
When submitting  using 
the value format you will get is look like this.
2019-09-06T00:21
To set new value in your input type box.
You must use:
date('Y-m-d\TH:i', strtotime($exampleDate)) //2019-08-18T00:00
Solution Example:
$exampleDate = "2019-08-18 00:00:00";//sql timestamp
$exampleDate = strtotime($exampleDate);
$newDate = date('Y-m-d\TH:i', $exampleDate);
or
$exampleDate = "2019-08-18 00:00:00";//sql timestamp
$newDate = date('Y-m-d\TH:i', strtotime($exampleDate));
If you dont use strtotime() you will get an error of
Notice: A non well formed numeric value encountered
 - $exampleDate = 2019-08-18 00:00:00 ;
 - //Not Working - output(1970-01-01T01:33:39)
 - 
 - //Not Working - output(1970-01-01T01:33:39+01:00)
 - 
 - //Not Working - output(2019-08-18T00:00:00+02:00)
 - 
 - //Not Working - output(2019-09-23T19:36:01+02:00)
 - format('c');?>
 - //Working Perfect - output(2019-08-18T00:00:00)
 -