You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When passing an immutable Carbon object into the Form::date field, it will try and validate the input by checking if it's an instance of DateTime which doesn't pass.
When passing an immutable Carbon object into the
Form::date
field, it will try and validate the input by checking if it's an instance ofDateTime
which doesn't pass.html/src/FormBuilder.php
Line 434 in ae15b9c
This could be fixed by checking if the value implements
DateTimeInterface
, then it would support both.The text was updated successfully, but these errors were encountered: