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

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

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

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

@endif {{ html()->modelForm($organization, 'PUT', route('organization.update', $organization->name))->open() }} {{ html()->hidden('id')->forgetAttribute('id') }} @if ($is_admin)
組織名 {{ html()->text('name')->placeholder('') }}
最大接続数 {{ html()->number('max_limit', null, -1, 99999) }}
利用オプション


備考 {{ html()->text('comment') }}
@else {{-- 組織管理者の場合は変更不可 --}} {{ html()->hidden('name')->forgetAttribute('id') }} {{ html()->hidden('max_limit')->forgetAttribute('id') }} {{ html()->hidden('comment')->forgetAttribute('id') }} {{ html()->hidden('enable_stz')->forgetAttribute('id') }} {{ html()->hidden('enable_vck')->forgetAttribute('id') }} {{ html()->hidden('enable_tck')->forgetAttribute('id') }}
組織名 {{$organization->name}}
同時接続数 {{$organization->max_limit}}
備考 {{$organization->comment}}
利用オプション SCVX Sanitizer: {{ $organization->enable_stz ? '利用可能' : '利用不可' }}
Virus Checker: {{ $organization->enable_vck ? '利用可能' : '利用不可' }}
Threat Checker: {{ $organization->enable_tck ? '利用可能' : '利用不可' }}
@endif @if (\App\Libs\ConfHelper::usingPassword())
パスワードの最低文字数 {{ html()->number('pwd_length', null, 1, $pwd_length_max) }}文字
パスワード変更の最低間隔 {{ html()->number('pwd_min_term', null, 0) }}日間
パスワードの有効期限 {{ html()->number('pwd_max_term', null, 0) }}日間
期限切れ警告の表示期間 {{ html()->number('pwd_warning_term', null, 0) }}日前から
重複チェックを行う世代数 {{ html()->number('pwd_generation_limit', null, 0, $pwd_generation_limit_max) }}件
一定の複雑性を満たしたパスワードのみ許可する {{ html()->checkbox('pwd_complexity') }}
パスワードに含めることのできない単語 {!! html()->textarea('pwd_ngwords')->placeholder("password\r\nabcd\r\n1234") !!}
アカウントロックしきい値 {{ html()->number('lockout_threshold', null, 0) }}回
@endif {{ html()->submit('登録') }} {{ html()->form()->close() }} @stop @section('script') @stop