gpt4 book ai didi

php - Laravel/ Blade : How to style error message in form

转载 作者:可可西里 更新时间:2023-11-01 00:09:06 24 4
gpt4 key购买 nike

我制作了一个带验证的表单(laravel with blade template engine)并且它按预期工作。

代码如下:

@if ($errors->first('email'))
{{ Form::text('email', null, $attributes = array('class'=>'error')) }}
{{ $errors->first('email', '<small class=error>:message</small>') }}
@else
{{ Form::text('email') }}
@endif

是否有更清洁的解决方案?

我只想写一次 Form::text('email')...

最佳答案

这应该是不言自明的

{{ Form::text('email', null, $attributes = $errors->has('email') ? array('class'=>'error') : array()) }}
@if ($errors->has('email'))
{{ $errors->first('email', '<small class=error>:message</small>') }}
@endif

关于php - Laravel/ Blade : How to style error message in form,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24448404/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com