DEV Community

Ismael Contreras
Ismael Contreras

Posted on

Blade Input Error Custom

@props(['for'])
@error($for)
    @if (strlen($slot->toHtml()) != 0)
        <p {{ $attributes->merge(['class' => 'text-sm text-red-600']) }}>
            {{ $slot }}
        </p>
    @else
        <p {{ $attributes->merge(['class' => 'text-sm text-red-600']) }}>
            {{ $message }}
        </p>
    @endif
@enderror


Enter fullscreen mode Exit fullscreen mode

Top comments (0)