@extends('layouts.admin') @section('title', 'Edit Admin Profile') @push('styles') @endpush @section('content')
@php $completion = 0; if (!empty($admin->name)) $completion += 34; if (!empty($admin->email)) $completion += 33; if (!empty($admin->photo)) $completion += 33; $photoUrl = !empty($admin->photo) ? asset($admin->photo) : null; @endphp {{-- Header --}}

Edit Profile

আপনার অ্যাডমিন প্রোফাইল, ছবি এবং পাসওয়ার্ড আপডেট করুন।

Back
{{-- Completion Card --}}

Profile Completion

নাম, ইমেইল এবং প্রোফাইল ফটো পূরণ করলে প্রোফাইল সম্পূর্ণ হবে।

{{ $completion }}%
Completed
Name {{ !empty($admin->name) ? '✓' : '•' }}
Email {{ !empty($admin->email) ? '✓' : '•' }}
Photo {{ !empty($admin->photo) ? '✓' : '•' }}
{{-- Left Preview Card --}}

Profile Preview

Profile Photo
{{ strtoupper(substr($admin->name ?? 'A', 0, 1)) }}
{{ $admin->name }}
{{ $admin->email }}
{{-- Right Forms --}}
{{-- SweetAlert --}} @if(session('success') || session('error')) @endif {{-- Validation --}} @if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Profile Info Form --}}

Profile Information

নাম, ইমেইল এবং প্রোফাইল ফটো আপডেট করুন।

@csrf
{{-- Drag & Drop Upload --}}
📷

Drag & drop photo here

or click to browse image

JPG, PNG, WEBP • max 2MB

{{-- Crop Area --}}
{{-- Password Form --}}

Change Password

সিকিউর পাসওয়ার্ড ব্যবহার করুন।

@csrf
Password Strength Weak
@endsection @push('scripts') @endpush