Hi guys so i have this update page where i need to display data of a user that are currently inside my database. Among this data is the birthday of the user so im trying display the birthday on Form::input that is a datepicker but the birthday can't be seen any idea on how will i make the datepicker display the birthday of the user from the database? for now i have this code
<div class="form-group">
{{ Form::label('date', 'Birthday') }} Current: {{ $sinf->Birthdate }} </br>
{{ Form::input('date', '$sinf->Birthdate', Input::old('date'), ['class'=>'datepicker', 'placeholder' => '$sinf->Birthdate']) }}<span class="errmsg" style="color:red"><i>{{ $errors->first('date', ':message') }}</i></span>
</div>