@extends('layout.default') @section('content') @if ($errors->any())

@foreach ($errors->all() as $error) {{ $error }}
@endforeach

@endif @if (Session::has('flash_msg'))

{!! Session::get('flash_msg') !!}

@endif {{ html()->form('POST', route('organization.store'))->open() }}
組織名 {{ html()->text('name')->placeholder('') }}
最大接続数 {{ html()->number('max_limit', -1, -1, 99999) }}
利用オプション


備考 {{ html()->text('comment') }}
@if (\App\Libs\ConfHelper::usingPassword())
パスワードの最低文字数 {{ html()->number('pwd_length', 4, 1, $pwd_length_max) }}文字
パスワード変更の最低間隔 {{ html()->number('pwd_min_term', 0, 0) }}日間
パスワードの有効期限 {{ html()->number('pwd_max_term', 0, 0) }}日間
期限切れ警告の表示期間 {{ html()->number('pwd_warning_term', 0, 0) }}日前から
重複チェックを行う世代数 {{ html()->number('pwd_generation_limit', 0, 0, $pwd_generation_limit_max) }}件
一定の複雑性を満たしたパスワードのみ許可する {{ html()->checkbox('pwd_complexity') }}
パスワードに含めることのできない単語 {!! html()->textarea('pwd_ngwords')->placeholder("password\r\nabcd\r\n1234") !!}
アカウントロックしきい値 {{ html()->number('lockout_threshold', 0, 0) }}回
@endif {{ html()->submit('登録') }} {{ html()->form()->close() }} @stop @section('script') @stop