Skip to content

Commit

Permalink
Bugfix - Bold Text In Subscription Views (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuafranks authored Jun 11, 2020
1 parent e21b4ff commit d483815
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/subscriptions/subscribe.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@section('content')
<div class="text-center">
<h1>{{ __('Resubscribe') }}</h1>
<p>{{ __('Add <b>:email</b> to this email list?', ['email' => $message->subscriber->email]) }}</p>
<p>{!! __('Add <b>:email</b> to this email list?', ['email' => $message->subscriber->email]) !!}</p>

<form action="{{ route('sendportal.subscriptions.update', $message->hash) }}" method="post">
@csrf
Expand Down
2 changes: 1 addition & 1 deletion resources/views/subscriptions/unsubscribe.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@section('content')
<div class="text-center">
<h1>{{ __('Unsubscribe') }}</h1>
<p>{{ __('Remove <b>:email</b> from this email list?', ['email' => $message->subscriber->email]) }}</p>
<p>{!! __('Remove <b>:email</b> from this email list?', ['email' => $message->subscriber->email]) !!}</p>

<form action="{{ route('sendportal.subscriptions.update', $message->hash) }}" method="post">
@csrf
Expand Down

0 comments on commit d483815

Please sign in to comment.