@extends('layouts.app') @section('title', '編輯帳號') @push('styles') @endpush @section('content') @php $roleMeta = [ 'admin' => ['label' => '最高管理者', 'bg' => '#fee2e2', 'color' => '#b91c1c'], 'supervisor' => ['label' => '主管', 'bg' => '#fef3c7', 'color' => '#92400e'], 'user' => ['label' => '一般使用者', 'bg' => '#f0fdf4', 'color' => '#15803d'], ]; $rm = $roleMeta[$user->role] ?? ['label' => $user->role, 'bg' => '#f1f5f9', 'color' => '#475569']; @endphp