@extends('layouts.admin.app') @section('title', __('labels.edit_profile')) @section('header_data') @php $page_title = __('labels.edit_profile'); $page_pretitle = __('labels.update_your_profile_information'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('admin.dashboard')], ['title' => __('labels.profile'), 'url' => route('admin.profile.index')], ['title' => __('labels.edit_profile'), 'url' => null], ]; @endphp @section('admin-content')
@csrf

{{ __('labels.edit_profile') }}

@if($user->profile_image) Profile Image @else
{{ strtoupper(substr($user->name, 0, 2)) }}
@endif
{{ __('labels.profile_image_hint') }}
{{ __('labels.email_cannot_be_changed') }}
{{ __('labels.mobile_cannot_be_changed') }}
@csrf

{{ __('labels.update_password') }}

@endsection