@extends('layouts.app')
@section('title', 'Admin Profile')
@section('content')
{{-- ── Page Header ── --}}
{{-- ── LEFT: Avatar card ── --}}
@if($user->image_url)

@else
@endif
{{ $user->name }}
{{ $user->email }}
{{-- ── RIGHT: Profile details card ── --}}
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush