Level 75
If dob column is an instance of carbon then
<input type="date" name="dob" value="{{ $patient->dob->toDateString() }}">
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
public function edit(Patient $patient)
{
return view('backend.patient.edit', compact('patient'));
}
blade file
<input type="date" name="dob" value="{{ $patient->dob }}">
date in populating in the edit view file date format in the database :2021-07-02 00:00:00
If dob column is an instance of carbon then
<input type="date" name="dob" value="{{ $patient->dob->toDateString() }}">
Please or to participate in this conversation.