Php 为什么我的Laravel5将html呈现为字符串而不是dom?

Php 为什么我的Laravel5将html呈现为字符串而不是dom?,php,forms,laravel-5,blade,Php,Forms,Laravel 5,Blade,因此,我写了以下路线: Route::get('/login', function() { return View::make('login.form'); }); 这是一种观点: @extends('layouts.master') @section('content') <div class="form-section"> {{ Form::open( array( 'ur

因此,我写了以下路线:

Route::get('/login', function() {
    return View::make('login.form');
});
这是一种观点:

@extends('layouts.master')

@section('content')
    <div class="form-section">
        {{ Form::open(
                array(
                    'url' => 'login-submit',
                    'method' => 'POST'
                )
            )
        }}

            {{ Form::submit('Authorize With AisisPlatform') }}
        {{ Form::close() }}
@stop
@extends('layouts.master'))
@节(“内容”)
{{Form::open(
排列(
'url'=>'登录提交',
'方法'=>'发布'
)
)
}}
{{Form::submit('Authorize With aiisplatform')}
{{Form::close()}}
@停止
这正是我在查看页面时看到的内容:

<form method="POST" action="http://app-response.tracking/login-submit" accept-charset="UTF-8"><input name="_token" type="hidden" value="7xHzX20h1RZBnkTP2CRraZVsAfSQIfVP61mBiFtN"> <input type="submit" value="Authorize With AisisPlatform"> </form>


嗯。。。。。表格不应该很好吗。。。。和实际形式?为什么它将html呈现为一个字符串?如何使其呈现实际的表单提交按钮?

默认的回显括号:
{{…}
默认情况下转义HTML,以防止HTML注入

您应该使用
{!!..!!}
打印原始HTML。例如:

{!! Form::submit('Authorize With AisisPlatform') !!}
可能重复的