@extends('layouts.app') @section('content') @include('Partials.sidebar')
@include('Partials.header')

✏️ Edit Profile

← Back to Profile
@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
Update Your Information
@csrf @method('PUT') {{-- Profile Photo --}}
@if($admin->profile_photo) @else
{{ strtoupper(substr($admin->name, 0, 1)) }}
@endif
JPG, JPEG, PNG — max 2MB
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
Cancel
@include('Partials.footer') @endsection @push('scripts') @endpush