@extends('layouts.main') @section('title', 'Profil Admin - Rei Cosrent') @section('styles') @endsection @section('content')

Profil Admin

Kelola sistem dan data aplikasi Rei Cosrent

Selamat datang, {{ $profile_contact ? $profile_contact->name : (auth()->user()->name ?? 'Admin') }}!

Anda login sebagai Administrator

@if($profile_contact) {{ $profile_contact->title }} @endif

Profil & Kontak

@php $adminPhoto = $profile_contact && $profile_contact->photo ? asset('storage/' . $profile_contact->photo) : $adminPhoto ?? null; $profileName = $profile_contact ? $profile_contact->name : " Belum diisi"; $profileTitle = $profile_contact ? $profile_contact->title : " Jabatan belum diisi"; $profileVision = $profile_contact ? $profile_contact->vision : " Belum ada deskripsi singkat."; $profileAddress = $profile_contact ? $profile_contact->address : " Belum diisi"; $profilePhone = $profile_contact ? $profile_contact->phone : " Belum diisi"; $profileEmail = $profile_contact ? $profile_contact->email : " Belum diisi"; @endphp @if($adminPhoto) Foto Pengurus @else
@endif
{{ $profileName }}

{{ $profileTitle }}

Aktif

Tentang Saya

{{ $profileVision }}

Alamat

{{ $profileAddress }}

Telepon

{{ $profilePhone }}

Email

{{ $profileEmail }}

Nama Admin

{{ $profile_contact ? $profile_contact->name : (auth()->user()->name ?? 'Admin') }}

Konten Dashboard

Ringkasan Pesanan & Pendapatan

Pilih rentang waktu untuk melihat data

Total Pesanan
-
Total Pendapatan
-
Grafik Pesanan
Grafik Pendapatan
@endsection @section('scripts') @endsection