Support the ongoing development of Laravel.io →
Blade Forms
Last updated 10 months ago.
0

Same thing is happening for me.

Last updated 10 months ago.
0

Ok. Let me know if you find a solution (i will ofc do the same).

Last updated 10 months ago.
0
Solution

Hey, i have this problem to. Laravel has changed the behavior of the double curly bracket. See this Commit: https://github.com/laravel/framework/commit/833d90073da404df4b...

Workaround should be this: https://github.com/laravel/framework/commit/b7611b142e7d76658d...

But this works for me neither.

Hope there will be an fix soon.

Last updated 10 months ago.
0

The best solution is to adjust your views to use the new style of raw Blade tag:

{!! Form::open() !!}

https://github.com/laravel/framework/blob/833d90073da404df4b5b...

Last updated 10 months ago.
0

There was a important change 1 or 2 days ago in Blade. Now both {{ }} and {{{ }}} are escaped by default. To render raw code use {!! !!}} like:

{!! Form::open() !!}

Last updated 10 months ago.
0

Taylor has given some information about the changes here:

https://laracasts.com/discuss/channels/general-discussion/new-...

You change change the settings back to use {{ }} with this if wanted:

Blade::setEchoFormat('%s');
Last updated 10 months ago.
0

Where do we put that statement? In every view? controller calling the view? Base controller construct method for a global effect?

Last updated 10 months ago.
0

Sign in to participate in this thread!

LoadForge

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.