When I write php code in html, there is no problem with simple code. But after I write it: ``` {!! Form::radios('status', ['a' => 'Active', 'i' => 'Inactive']) !!} ``` the > in the view file is changed be '>'; so the page is cast syntax error: ``` Illuminate \ View \ ViewException (E_ERROR) syntax error, unexpected '=', expecting ']' (View: ) Previous exceptions ``` Is there any way to solve this problem?