@extends('layouts.admin') @section('main-content')

Profile Change Approval

@if($changes->isEmpty())
No pending profile changes.
@else @foreach($changes as $change)
{{ $change->user->name }}
Requested on {{ $change->created_at->format('d M Y, H:i') }}
Review
@endforeach @endif
@endsection