input - Laravel Blade template sanitization -
does blade template (applicable laravel 5.4) input field, example, {!! form::text($name, $value, []) !!}
escapes input data? want escape input data malicious tags/code. tag {!! !!}
meant not escape data while packagecontrol.io describes input fields same tag style {!! abcd !!}
. hence, question, correct laravel 5.4 blade template format?
all form's input data further sanitized using regex inside controller before insertion db. proper practice?
Comments
Post a Comment