fix input max, and help block position

This commit is contained in:
Godfrey M
2025-04-22 11:59:19 -07:00
committed by snipe
parent 93489529a3
commit 68b0f80fce
2 changed files with 11 additions and 11 deletions
@@ -14,6 +14,7 @@ use App\Http\Requests\StoreLabelSettings;
use App\Http\Requests\StoreSecuritySettings;
use App\Models\CustomField;
use App\Models\Group;
use App\Models\Labels\Label as LabelModel;
use App\Models\Setting;
use App\Models\Asset;
use App\Models\User;
@@ -749,6 +750,7 @@ class SettingsController extends Controller
return view('settings.labels')
->with('setting', Setting::getSettings())
->with('is_gd_installed', $is_gd_installed)
->with('template', LabelModel::find(Setting::getSettings()->label2_template))
->with('customFields', CustomField::where('field_encrypted', '=', 0)->get());
}