@extends('backend.layouts.app') @section('title', 'Edit Profile') @section('content')

@csrf @method('PUT')
@if($user->profile_picture)
Profile Picture

Current: {{ basename($user->profile_picture) }}

@else
{{ strtoupper(substr($user->username ?? 'U', 0, 1)) }}

No profile picture set

@endif @error('profile_picture')

{{ $message }}

@enderror
Back
@endsection @push('scripts') @endpush