Php 带有starnge错误的laravel5视图

Php 带有starnge错误的laravel5视图,php,laravel,view,Php,Laravel,View,我有这样的观点,当我要求它时,它向我显示了一个奇怪的错误,我想对我来说很奇怪。 my create.blade.php @extends('layouts.app') @section('content') <div class="col-md-6"> {!! Form::open([action('PropertiesController@update', $property->id), 'files'=>true]) !!}

我有这样的观点,当我要求它时,它向我显示了一个奇怪的错误,我想对我来说很奇怪。 my create.blade.php

@extends('layouts.app')
@section('content')
    <div class="col-md-6">
        {!! Form::open([action('PropertiesController@update', $property->id), 'files'=>true]) !!}
            <div class="form-group">
                {!! From::label('category', 'category') !!}
                {!! Form::select('category', {{ $categories }},['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('city', 'located city') !!}
                {!! Form::select('city', {{ $citys }},['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('street', 'Street adress: ') !!}
                {!! Form::text('street', 'Adress', ['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::file('images') !!}
            </div>
            <div class="form-group">
                {!! Form::label('description', 'Add description') !!}
                {!! Form::textarea('description', null, ['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::submit('Done', ['class'=>'btn btn-primary']) !!}
            </div>
        {!! Form::close() !!}
    </div>

@stop
@extends('layouts.app'))
@节(“内容”)
{!!Form::open([action('PropertiesController@update“,$property->id),“files'=>true])
{!!From::label('category','category')
{!!表单::选择('category',{{$categories},['class'=>'Form-control'])
{!!Form::label('city','located city')
{!!Form::select('city',{{$citys}},['class'=>'Form-control'])
{!!表单::标签('街道','街道地址:')
{!!Form::text('street','address',['class'=>'Form-control'])
{!!Form::file('images')!!}
{!!Form::label('description','adddescription')
{!!Form::textarea('description',null,['class'=>'Form-control'])
{!!表单::提交('Done',['class'=>'btn-btn-primary'])
{!!Form::close()!!}
@停止
错误是:

83c90d4b665ecd8385b3b6b2e7203d1ef06a1339.php第8行中出现错误异常:
解析错误:语法错误,意外“您正在尝试在刀片语法中使用刀片语法,您不需要这样做

{!! Form::select('category', {{ $categories }},['class'=>'form-control']) !!}
它可以是简单的

{!! Form::select('category', $categories, ['class'=>'form-control']) !!}

你在几个地方都做过,所以一定要把它们都修好。您会注意到错误提到了第8行,这是此错误发生后立即出现的一行。

您可以转到文件夹
storage/logs/laravel.log
,然后转到最后一行,在那里显示时间戳(示例
[2017-01-31 15:21:38]
)并查看错误是的,我已经这样做了,但我看不出a是如何做的