@extends('layouts/app') @section('css') @stop @section('content')

Password Policy Settings

@if(Session::has('message'))
Success!
{{ Session::get('message') }} @php Session::forget('message'); @endphp
@endif
@csrf
@if ($errors->has('password_age')) {{ $errors->first('password_age') }} @endif
@if ($errors->has('password_history')) {{ $errors->first('password_history') }} @endif
@if ($errors->has('password_lockout')) {{ $errors->first('password_lockout') }} @endif
Minimum   Maximum  
@if ($errors->has('password_min') || $errors->has('password_max')) {{ $errors->first('password_min') }} {{ $errors->first('password_max') }} @endif
@endsection