@extends('layouts.app') @section('content')

ユーザー情報確認 > 入力内容確認

下記の内容で変更します。
@csrf

{{ $user->user_name }}

{{ $user->user_phonetic }}

@if (!empty($input['user_gender']))

{{ $input['user_gender'] }}

@endif

{{ ($input['user_regident_zip_1'] ?? $user->user_regident_zip_1 ?? '') }}-{{ ($input['user_regident_zip_2'] ?? $user->user_regident_zip_2 ?? '') }}{{ ($input['user_regident_pre'] ?? $user->user_regident_pre ?? '') }}{{ ($input['user_regident_city'] ?? $user->user_regident_city ?? '') }}{{ ($input['user_regident_add'] ?? $user->user_regident_add ?? '') }}

{{ $input['user_birthdate'] }}

{{ $input['user_age'] }}

{{ implode('-', $input['user_homephone']) }}

@foreach ($input['user_homephone'] as $val) @endforeach

{{ implode('-', $input['user_mobile']) }}

@foreach ($input['user_mobile'] as $val) @endforeach

{{ $input['user_primemail'] }}

{{ $input['user_primemail_confirmation'] }}

{{ $input['user_submail'] }}

{{ $ward_residents_label }}

@if ($input['ward_residents'] === '1')

{{ $input['user_school'] }}

{{ $input['user_graduate'] }}

@else

{{ $input['user_workplace'] }}

@endif

{{ ($input['user_relate_zip_1'] ?? $user->user_relate_zip_1 ?? '') }}-{{ ($input['user_relate_zip_2'] ?? $user->user_relate_zip_2 ?? '') }}{{ ($input['user_relate_pre'] ?? $user->user_relate_pre ?? '') }}{{ ($input['user_relate_city'] ?? $user->user_relate_city ?? '') }}{{ ($input['user_relate_add'] ?? $user->user_relate_add ?? '') }}

@if(isset($input['photo_filename1']) && $input['photo_filename1'] !== '') @endif
@if(isset($input['photo_filename2']) && $input['photo_filename2'] !== '') @endif
@if(isset($input['user_pass']) && $input['user_pass'] !== '')

********

@endif
@endsection