@extends('layouts.console') @section('title','会員編集')@section('console','運営管理')@section('heading','会員編集 #'.$member->id) @section('who','管理者')@section('logout', route('admin.logout')) @section('nav')@include('admin._nav')@endsection @section('content')

← 会員一覧へ @if($member->status!=-1)

@csrf
@endif

@csrf
入力すると新パスワードに上書きし、旧式パスワードを無効化します。
※ 状態を「承認済」以外にすると、この会員の店舗は自動で非公開になります。

この会員の店舗

@forelse($member->shops as $s) @empty@endforelse
ID店舗名エリア状態
{{ $s->id }}{{ $s->name }}{{ $s->pref }}・{{ $s->city }} {{ $s->is_published?'掲載中':'非公開' }} 編集
店舗なし
@endsection