17 lines
275 B
PHP
17 lines
275 B
PHP
|
@stack($type . '_message_start')
|
||
|
|
||
|
<div @class([
|
||
|
'rounded-xl px-5 py-3 mb-5',
|
||
|
$backgroundColor
|
||
|
])
|
||
|
>
|
||
|
<p @class([
|
||
|
'text-sm mb-0',
|
||
|
$textColor
|
||
|
])
|
||
|
>
|
||
|
{!! $message !!}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
@stack($type . '_message_end')
|