@extends('layout.default') @section('content') @if (Session::has('flash_msg'))

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

@endif @if ($errors->any()) @foreach($errors->all() as $error)

{{ $error }}

@endforeach @else @if (App\Libs\ADHelper::isScvxKerberos())

AD連携/Kerberos認証モードです。ユーザ名を入力してください。

@elseif (App\Libs\ADHelper::isScvxLdap())

LDAP認証モードです。ユーザ名を入力してください。

@elseif (App\Libs\ADHelper::isScvxSaml())

SAML認証モードです。ユーザ名を入力してください。

@else

ユーザ名とパスワードを入力してください。

@endif @endif
@csrf {{ html()->hidden('organization', $organization)->forgetAttribute('id') }}
@if (!App\Libs\ConfHelper::usingPassword()) @else @endif @if (!App\Libs\ConfHelper::usingPassword()) @else @endif @if ($flow_available) @else @endif @if ($flow_available) @endif
SCVユーザ名 {{ html()->text('name')->autofocus() }} グループ名
パスワード 登録不要パスワード {{ html()->password('password') }} パスワード確認 登録不要パスワード確認 {{ html()->password('password_confirmation') }}
社員番号 {{ html()->text('employee_id')->placeholder('<英数字を入力できます>') }} 氏名 {{ html()->text('jpname') }}
部署 {{ html()->text('department')->placeholder('営業部') }} 役職 {{ html()->text('post')->placeholder('部長') }}
任意データ1 {{ html()->text('custom_data1') }} 任意データ2 {{ html()->text('custom_data2') }}
任意データ3 {{ html()->text('custom_data3') }} 備考 {{ html()->text('comment') }}
Eメール {{ html()->text('email') }} SCVFlowの承認権限 {{ html()->checkbox('privilege') }}
SCVFlowの承認グループ {{ html()->text('flow_group') }}
@stop @section('script') {{-- FLOW有効時、Emailにアスタリスクをつけるためのフラグ --}} @stop