Merge pull request #6267 from beganovich/v5-567
(v5) Show signature as block level on emails
This commit is contained in:
commit
2c1f29715c
|
|
@ -29,5 +29,9 @@
|
||||||
@isset($url)
|
@isset($url)
|
||||||
<a href="{{ $url }}" class="button" target="_blank">{{ ctrans($button) }}</a>
|
<a href="{{ $url }}" class="button" target="_blank">{{ ctrans($button) }}</a>
|
||||||
@endisset
|
@endisset
|
||||||
|
|
||||||
|
@isset($signature)
|
||||||
|
<p>{!! nl2br($signature) !!}</p>
|
||||||
|
@endisset
|
||||||
</div>
|
</div>
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
@endisset
|
@endisset
|
||||||
|
|
||||||
@isset($signature)
|
@isset($signature)
|
||||||
{!! nl2br($signature) !!}
|
<p>{!! nl2br($signature) !!}</p>
|
||||||
@endisset
|
@endisset
|
||||||
</div>
|
</div>
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue