在laravel中形成一个奇怪的输出

时间:2016-11-18 05:36:20

标签: php forms laravel-5

嘿那里我非常喜欢laravel并且正在使用laravel 5,在这里我试图在laravel中构建一个简单的表单,只是为了一些启动器,但正如我所做的那样,即我执行包含我的简单表单的页面我的xampp localhost(windows os)它给出了原始的html输出,即在标签中,我几乎是空白,因为我只是这个laravel框架的初学者,如果我出错了,我需要一些帮助,请原谅我。

这是 routes.php

<!--app/views/form.blade.php-->
<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>
   Laravel
  </title>
 </head>
 <body>
  {!! Form::open(array('url'=>'form-submit')) !!}

<!-- email input -->
{{ Form::label('email','Email',array('id'=>'','class'=>'')) }}
{{ Form::email('email','hello@clivern.com',array('id'=>'','class'=>'')) }}
<!-- password inputs -->
{{ Form::label('password','Password',array('id'=>'','class'=>'')) }}
{{ Form::password('password','',array('id'=>'','class'=>'')) }}
<!-- submit buttons -->
{{ Form::submit('Save') }}

{!! Form::close() !!}
 </body>
</html>

这是 form.blade.php

<form method="POST" action="http://laravel.dev/form-submit" accept-charset="UTF-8">
<input name="_token" type="hidden" value="nOdrCi1IIwBGx2ofIMfNH2xvI9xSxHGk8m8glBYf"> 
<label for="email" id="" class="">Email</label>
<input id="" class="" name="email" type="email" value="hello@clivern.com"> <label for="password" id="" class="">Password</label> 
<input name="password" type="password" value="" id="password"> 
<input type="submit" value="Save"> </form>

这是我运行时得到的输出

{{1}}

1 个答案:

答案 0 :(得分:0)

尝试使用{!!在表单外观中使用Form :: methodHere !!}。