Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

andylord565's avatar

date form

https://laravelcollective.com/docs/5.2/html#date

Just added this date function onto my form but struggling to see how to add a class to this how would i do this ??

{!! Form::date('date_added', \Carbon\Carbon::now()); !!}
0 likes
1 reply
acasar's avatar
acasar
Best Answer
Level 13

As a third argument:

{!! Form::date('date_added', \Carbon\Carbon::now(), ['class' => 'your classes here']) !!}

Please or to participate in this conversation.