mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Added checkbox to settings
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
2b43f3cb84
commit
4d55765e28
|
@ -113,6 +113,22 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- user profile edit checkbox -->
|
||||
<div class="form-group">
|
||||
<div class="col-md-3">
|
||||
<label>
|
||||
{{ trans('admin/settings/general.profile_edit') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<label class="form-control">
|
||||
<input type="checkbox" value="1" name="profile_edit" {{ (old('profile_edit', $setting->profile_edit)) == '1' ? ' checked="checked"' : '' }} aria-label="profile_edit">
|
||||
{{ trans('admin/settings/general.profile_edit_help') }}
|
||||
</label>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Load images in emails -->
|
||||
<div class="form-group {{ $errors->has('show_images_in_email') ? 'error' : '' }}">
|
||||
<div class="col-md-3">
|
||||
|
|
Loading…
Reference in a new issue