@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('Edit Profile')}} @endsection @section('content')
@include('backend.partials.message')
@include('backend.partials.error')
@csrf
@php $image_upload_btn_label = __('Upload Image'); @endphp
@php $profile_img = get_attachment_image_by_id(auth()->user()->image,null,true); @endphp @if (!empty($profile_img))
{{auth()->user()->name}}
@php $image_upload_btn_label = __('Change Image'); @endphp @endif
{{__('Recommended Image Size 100x100. Only Accept: jpg,png.jpeg. Size less than 2MB')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection