mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
12 lines
518 B
PHP
12 lines
518 B
PHP
@props(['code', 'value'])
|
|
|
|
<div class="form-group col-lg-6">
|
|
<div class="row">
|
|
<label class="col-form-label col-md-3" for="{{ $code }}">{{ trans('admin.system.' . $code) }}</label>
|
|
<div class="col-md-8">
|
|
<input name="{{ $code }}" data-plugin="dropify" data-default-file="{{ asset($value ?? '/assets/images/default.png') }}" type="file" />
|
|
<button class="btn btn-success float-right mt-10" type="submit">{{ trans('common.submit') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|