Issue
I have stored form HTML in the relational database.
If I retrieve HTML content using the below syntax.
{{$content["form_content"]}}
I get
this view.
Instead, if I use
{{!! $content["form_content"] !!}}
I get this view with unwanted curly braces.
Solution
Use
{!! $content["form_content"] !!}
Answered By – Dominion
Answer Checked By – Marie Seifert (AngularFixing Admin)