@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/settings/general.purge_deleted') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')

{{ trans('admin/settings/general.purge') }}

{{csrf_field()}}

{{ trans('admin/settings/general.confirm_purge_help') }}

@if (config('app.lock_passwords')===true) {{ Form::text('confirm_purge', old('confirm_purge'), array('class' => 'form-control', 'disabled'=>'true')) }} @else {{ Form::text('confirm_purge', old('confirm_purge'), array('class' => 'form-control')) }} @endif @if (config('app.lock_passwords')===true)

{{ trans('general.feature_disabled') }}

@endif
@stop