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