SmartCane/laravel_app/resources/views/components/input-error.blade.php
Martin Folkerts f210e4dcd9 wip
2023-10-17 11:40:04 +02:00

6 lines
128 B
PHP

@props(['for'])
@error($for)
<p {{ $attributes->merge(['class' => 'text-sm text-red-600']) }}>{{ $message }}</p>
@enderror