在 laravel 中,当我以这种方式进行验证时使用 Bootstrap 2.3.2:
return Redirect::back()->withInput()->withErrors($validation)->with('message', 'Insert the email please');
它自动给了我一个非常漂亮的黄色框,带有淡入效果,包含错误消息。
现在使用此验证:
return Redirect::back()->withInput()->withErrors($validation)->with('message');
那个黄色的盒子消失了。我创建了一个新的 div 来显示错误:
<div class="span12">
@if($errors->any())
<ul>
{{ implode('', $errors->all('<li class="error">:message</li>')) }}
</ul>
@endif
我怎样才能在这里添加淡入淡入的黄色框?
谢谢!