php – FatalErrorException:语法错误,意外’:’,期待’,’或’;’在Laravel

前端之家收集整理的这篇文章主要介绍了php – FatalErrorException:语法错误,意外’:’,期待’,’或’;’在Laravel前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这件事让我烦恼不已.我收到了这个解析错误:语法错误,意外’:’,期待’,’或’;’在第21行的/ opt / lampp / htdocs / pratice / storage / framework / views / 36f62563d0e17e05a5f15bec012dd0cd

我的视图文件

@extends('layouts.loginlayout')

@section('content')

    @if (session('status'))
        <div class="alert alert-success">
            {!! session('status') !!}
        </div>
    @endif

    @if (count($errors) > 0)
        <div class="alert alert-danger">
            <strong>Whoops!</strong> There were some problems with your input.<br><br>
            <ul>
                @foreach ($errors->all() as $error)
                    <li>{!! $error !!}</li>
                @endforeach
            </ul>
        </div>
    @endif 
//this is line 21
    {!! Form:open() !!}
        <div class="form-group">
            {!! Form::label('email','Email:') !!}
            {!! Form::text('email',null,['class'=>'form-control','id'=>'email']) !!}
        </div>

        {!! Form::submit('Login',['class'=>'btn pull-right default-button']) !!}


    {!! Form:close() !!}

@endsection
改变{!!表格:open()!!}来
{!! Form::open() !!}

和{!!形式:close()!!}来

{!! Form::close() !!}
原文链接:https://www.f2er.com/laravel/130488.html

猜你在找的Laravel相关文章