|
270 | 270 |
|
271 | 271 | </div> |
272 | 272 |
|
273 | | - <!-- Privacy Policy Footer--> |
274 | | - <div class="form-group {{ $errors->has('privacy_policy_link') ? 'error' : '' }}"> |
275 | | - <div class="col-md-3"> |
276 | | - <label for="privacy_policy_link">{{ trans('admin/settings/general.privacy_policy_link') }}</label> |
277 | | - </div> |
278 | | - <div class="col-md-8"> |
279 | | - |
280 | | - @if (config('app.lock_passwords')) |
281 | | - <input class="form-control disabled" disabled="disabled" name="privacy_policy_link" type="text" id="privacy_policy_link" value="{{ old('privacy_policy_link', $setting->privacy_policy_link) }}"> |
282 | | - @else |
283 | | - <input class="form-control" name="privacy_policy_link" type="text" id="privacy_policy_link" value="{{ old('privacy_policy_link', $setting->privacy_policy_link) }}"> |
284 | | - |
285 | | - @endif |
286 | | - |
287 | | - <span class="help-block">{{ trans('admin/settings/general.privacy_policy_link_help') }}</span> |
288 | | - {!! $errors->first('privacy_policy_link', '<span class="alert-msg" aria-hidden="true">:message</span>') !!} |
289 | | - |
290 | | - @if (config('app.lock_passwords')===true) |
291 | | - <p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p> |
292 | | - @endif |
293 | | - |
294 | | - </div> |
295 | | - </div> |
296 | | - |
297 | 273 |
|
298 | 274 | <!-- Load images in emails --> |
299 | 275 | <div class="form-group {{ $errors->has('show_images_in_email') ? 'error' : '' }}"> |
|
398 | 374 | {{ trans('admin/settings/general.legends.misc') }} |
399 | 375 | </legend> |
400 | 376 |
|
| 377 | + <!-- Privacy Policy Footer--> |
| 378 | + <div class="form-group {{ $errors->has('privacy_policy_link') ? 'error' : '' }}"> |
| 379 | + <div class="col-md-3"> |
| 380 | + <label for="privacy_policy_link">{{ trans('admin/settings/general.privacy_policy_link') }}</label> |
| 381 | + </div> |
| 382 | + <div class="col-md-8"> |
| 383 | + |
| 384 | + @if (config('app.lock_passwords')) |
| 385 | + <input class="form-control disabled" disabled="disabled" name="privacy_policy_link" type="text" id="privacy_policy_link" value="{{ old('privacy_policy_link', $setting->privacy_policy_link) }}"> |
| 386 | + @else |
| 387 | + <input class="form-control" name="privacy_policy_link" type="text" id="privacy_policy_link" value="{{ old('privacy_policy_link', $setting->privacy_policy_link) }}"> |
| 388 | + |
| 389 | + @endif |
| 390 | + |
| 391 | + <span class="help-block">{{ trans('admin/settings/general.privacy_policy_link_help') }}</span> |
| 392 | + {!! $errors->first('privacy_policy_link', '<span class="alert-msg" aria-hidden="true">:message</span>') !!} |
| 393 | + |
| 394 | + @if (config('app.lock_passwords')===true) |
| 395 | + <p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p> |
| 396 | + @endif |
| 397 | + |
| 398 | + </div> |
| 399 | + </div> |
| 400 | + |
401 | 401 | <!-- Depreciation method --> |
402 | 402 | <div class="form-group {{ $errors->has('depreciation_method') ? 'error' : '' }}"> |
403 | 403 | <div class="col-md-3"> |
|
0 commit comments