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

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

@if($user->profile_image) Profile Image @else
{{ strtoupper(substr($user->name, 0, 2)) }}
@endif
{{ $user->name }}
{{ $user->email }}
{{ $user->mobile }}
{{ $user->created_at->format('M d, Y') }}
{{ $user->updated_at->format('M d, Y') }}
@endsection