i wanted to customize this validation message on laravel, i dont know what to do.
i'm using this for error display
@if ($errors->any())
<div class="alert alert-danger">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
and i use my validation on model like below
public static $validation = [
'schedule_doctor_id' => 'required',
'nama_lengkap' => 'required|string',
'email' => 'required',
'no_tlp' => 'required',
'tanggal' => 'required|date_format:d-m-Y'
];
