In Laravel 5, everything inside the blade double brackets is escaped by default. If you want to render some raw html, you have to use the new {!! !!} tags.
So for example, this will work:
{!! Form::open() !!}
If you want to keep using the old syntax for raw html, you can use Blade::setRawTags($openTag, $closeTag)
to set the old {{ and }} tags, as Taylor Otwell pointed out here.
Ahh thanks so much. I thought it was an issue with HHVM for sure. I tried the setRawTags function but it seems to white screen the page, so I'll just work with the new tag structure.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community