@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]) !!}