@extends('layouts/default') {{-- Page title --}} @section('title') Update Security Settings @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content') {{ Form::open(['method' => 'POST', 'files' => true, 'class' => 'form-horizontal', 'role' => 'form' ]) }} {{csrf_field()}}

Security

{{ Form::label('two_factor_enabled', trans('admin/settings/general.two_factor_enabled_text')) }}
{!! Form::two_factor_options('two_factor_enabled', Input::old('two_factor_enabled', $setting->two_factor_enabled), 'select2') !!}

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

@if (config('app.lock_passwords'))

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

@endif {!! $errors->first('two_factor_enabled', ':message') !!}
{{Form::close()}} @stop