@extends('admin.layouts.app') @section('title', 'Edit Profile') @section('subtitle', 'Update your account information') @section('topbar-actions') Back to Profile @endsection @push('styles') @endpush @section('content') @if($errors->any())
Please fix the following errors:
@endif
@csrf @method('PUT')
{{-- Avatar upload --}}
@if($user->profile_image) {{ $user->name }} @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif
Change photo
Click to upload a new photo.
JPG, PNG or WEBP · Max 2MB
{{-- Form --}}
Basic Information
Minimum 8 characters
@endsection @push('scripts') @endpush