JellyBool

17773 经验值

表单验证提示信息,如何自定义?[委屈]

表单代码是create.blade.php里面的代码吗?用的是你的代码,用开发者工作看到引用了css文件

@extends('app')
@section('content')
    <h1>撰写新文章</h1>
{!! Form::open(['url'=>'article/store']) !!}
   <div class="form-group">
       {!! Form::label('title','标题:') !!}
       {!! Form::text('title',null,['class'=>'form-control']) !!}
   </div>
   <div class="form-group">
       {!! Form::label('content','正文:') !!}
       {!! Form::textarea('content',null,['class'=>'form-control']) !!}
   </div>
   <div class="form-group">
       {!! Form::submit('发表文章',['class'=>'btn btn-success form-control']) !!}
   </div>
{!! Form::close() !!}
@endsection