We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<div class="{{$viewClass['field']}}"> @include('admin::form.error') <div class="btn btn-info pull-left cropper-btn">{{ trans('admin_cropper.choose') }}</div> @include('admin::form.help-block') <input class="cropper-file" type="file" accept="image/*" {!! $attributes !!}/> <!-- <img class="cropper-img" {!! empty($value) ? '' : 'src="'.old($column, $value).'"' !!}> --> <img class="cropper-img" {!! empty($value) ? '' : 'src="'.$preview.'"' !!}> <input class="cropper-input" name="{{$name}}" value="{{ old($column, $value) }}"/> </div>
$form->cropper('image',__('Image'))->rules( ($config['required'] == 1 ? 'required|' : '') )->move('/products')->help("Image dimension must be ".$width."x".$height . '. ' . $require_text)->cRatio($width,$height)
我想要 那 Help text 放在按钮低下,这样看起来比较整齐。现在没有办法手动更改 blade
The text was updated successfully, but these errors were encountered:
可以使用Admin::css(); 加载的自己的CSS样式来搞定
Sorry, something went wrong.
@jorshxp 好的,谢谢你
No branches or pull requests
<div class="{{$viewClass['field']}}"> @include('admin::form.error') <div class="btn btn-info pull-left cropper-btn">{{ trans('admin_cropper.choose') }}</div> @include('admin::form.help-block') <input class="cropper-file" type="file" accept="image/*" {!! $attributes !!}/> <!-- <img class="cropper-img" {!! empty($value) ? '' : 'src="'.old($column, $value).'"' !!}> --> <img class="cropper-img" {!! empty($value) ? '' : 'src="'.$preview.'"' !!}> <input class="cropper-input" name="{{$name}}" value="{{ old($column, $value) }}"/> </div>
$form->cropper('image',__('Image'))->rules( ($config['required'] == 1 ? 'required|' : '') )->move('/products')->help("Image dimension must be ".$width."x".$height . '. ' . $require_text)->cRatio($width,$height)
我想要 那 Help text 放在按钮低下,这样看起来比较整齐。现在没有办法手动更改 blade
The text was updated successfully, but these errors were encountered: