@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('Edit Profile')}} @endsection @section('content')
@include('backend.partials.message')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf
{{__('do not use any space between words')}}
@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