@extends('user.layouts.index') @section('content')
Detail User
Nama {{ $user->name }}
Email {{ $user->email }}
Role @foreach($user->role as $roles) {{ $roles->name }} ( {{ $roles->label }} ) @endforeach
@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach @endif
    @endsection