mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
54 lines
2.4 KiB
PHP
54 lines
2.4 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/settings/general.purge_deleted') }}
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('settings.index') }}" class="btn btn-default"> {{ trans('general.back') }}</a>
|
|
@stop
|
|
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="box box-solid box-danger">
|
|
<div class="box-header with-border">
|
|
<h2 class="box-title"><i class="fas fa-exclamation-triangle"></i> {{ trans('admin/settings/general.purge') }}</h2>
|
|
</div>
|
|
{{ Form::open(['method' => 'POST', 'files' => false, 'autocomplete' => 'off', 'class' => 'form-horizontal', 'role' => 'form' ]) }}
|
|
<!-- CSRF Token -->
|
|
{{csrf_field()}}
|
|
<div class="box-body">
|
|
<p>{{ trans('admin/settings/general.confirm_purge_help') }}</p>
|
|
<div class="col-md-3{{ $errors->has('confirm_purge') ? 'error' : '' }}">
|
|
{{ Form::label('confirm_purge', trans('admin/settings/general.confirm_purge')) }}
|
|
</div>
|
|
<div class="col-md-9{{ $errors->has('confirm_purge') ? 'error' : '' }}">
|
|
@if (config('app.lock_passwords')===true)
|
|
{{ Form::text('confirm_purge', Request::old('confirm_purge'), array('class' => 'form-control', 'disabled'=>'true')) }}
|
|
@else
|
|
{{ Form::text('confirm_purge', Request::old('confirm_purge'), array('class' => 'form-control')) }}
|
|
@endif
|
|
|
|
@if (config('app.lock_passwords')===true)
|
|
<p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="box-footer text-right">
|
|
<button type="submit" class="btn btn-danger" {{ (config('app.lock_passwords')===true) ? ' disabled' : '' }}>{{ trans('admin/settings/general.purge') }}</button>
|
|
</div> <!--/box-footer-->
|
|
{{ Form::close() }}
|
|
</div> <!--/.box-solid-->
|
|
</div><!-- /.col-md-8-->
|
|
</div><!--/.row-->
|
|
|
|
{{Form::close()}}
|
|
|
|
@stop
|