@extends('themes.default1.admin.layout.admin') @section('Settings') active @stop @section('security') class="active" @stop @section('PageHeader')

{!! Lang::get('lang.settings') !!}

@stop @section('header') @stop @section('content')

{!! Lang::get('lang.security_settings') !!}

@if(Session::has('success'))
{!! Session::get('success') !!}
@endif @if(Session::has('failed'))
{!! Lang::get('lang/alert') !!}!

{{Session::get('failed')}}

@endif @if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if($errors->first('lockout_message'))
  • {!! $errors->first('lockout_message', ':message') !!}
  • @endif @if($errors->first('backlist_threshold'))
  • {!! $errors->first('backlist_threshold', ':message') !!}
  • @endif @if($errors->first('lockout_period'))
  • {!! $errors->first('lockout_period', ':message') !!}
  • @endif
    @endif {!! Form::model($security,['route'=>['securitys.update', $security->id],'method'=>'PATCH','files' => true]) !!}
    {!! Lang::get('lang.security_msg1') !!}
    {!! Form::textarea('lockout_message',null,['class'=>'form-control'])!!}
    {!! Lang::get('lang.security_msg2') !!}
    {!! Form::text('backlist_threshold',null,['class'=>'form-control'])!!} {!! Lang::get('lang.lockouts') !!}
    {!! Lang::get('lang.security_msg3') !!}
    {!! Form::text('lockout_period',null,['class'=>'form-control'])!!} {!! Lang::get('lang.minutes') !!}
    {!! Form::close() !!}
    @stop