{{-- 利用者マスタ 共通フォーム --}}
@csrf

基本情報

{{-- 利用者連番(表示のみ) --}}
{{-- 利用者ID --}}
{{-- 会員ID --}}
{{-- パスワード --}}
{{-- 手動登録フラグ --}}
@error('user_manual_regist_flag')
{{ $message }}
@enderror
{{-- 郵送必要フラグ --}}
@error('user_mailing_flag')
{{ $message }}
@enderror
{{-- 旧定期契約番号 --}}
{{-- タグシリアル --}}
{{-- タグシリアル(64) --}}
{{-- QRコード --}}
{{-- タグ/QRフラグ --}}
{{-- AID / 設置場所QR --}}
{{-- 利用者属性 --}}
{{-- 利用者名 --}}
{{-- フリガナ --}}
{{-- 自宅電話番号 --}}
{{-- 携帯電話番号 --}}
{{-- メールアドレス --}}
{{-- 予備メールアドレス --}}
{{-- 居住所 --}}
{{-- 関連住所 --}}
{{-- 区民 --}}
{{-- 勤務先 --}}
{{-- 学校 --}}
{{-- 卒業予定 --}}
{{-- 本人確認チェック済(5状態) --}} @php $options = [ 0 => '未チェック', 1 => '自動チェックOK', 2 => '手動チェックOK', 3 => '手動チェックNG', 4 => '自動チェックNG', ]; $current = (string) old('user_idcard_chk_flag', $isEdit ? (string)($user->user_idcard_chk_flag ?? '0') : '0'); @endphp
@foreach ($options as $flag => $label) @php $id = "user_idcard_chk_flag_{$flag}"; @endphp
@endforeach
{{-- 本人確認日時 --}}
{{-- 本人確認オペレータ --}}
{{-- タグ発行関連 --}}
{{-- 退会 --}}
@php use Illuminate\Support\Facades\Storage; $currentPhoto1 = $isEdit ? ($user->photo_filename1 ?? '') : ''; $currentPhoto2 = $isEdit ? ($user->photo_filename2 ?? '') : ''; @endphp {{-- 本人確認写真(1) --}}
@if ($currentPhoto1)
{{ basename($currentPhoto1) }}
現在登録済み
@else
現在登録なし
@endif
{{-- 本人確認写真(2) --}}
@if ($currentPhoto2)
{{ basename($currentPhoto2) }}
現在登録済み
@else
現在登録なし
@endif
{{-- 備考 --}}
{{-- 削除ボタン(別フォームを呼び出す) --}} 戻る @if ($isEdit && $hasDeleteRoute) @endif
{{-- /.card-body --}}
{{-- /.card --}}