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

User profile picture

{{ auth()->user()->full_name }}

{{ auth()->user()->email }}

About Me

{{ __('web.location') }}

{{ Auth::user()->location }}


{{ __('web.phone_number') }}

{{ Auth::user()->phone_number }}


Notes

{{ __('web.profile_user_notes') }}

{{-- chat --}}
{{-- users --}}
    @foreach ($users as $us)
  • {{ $us->full_name }}
  • @endforeach
{{-- message content --}}
Alexander Pierce 23 Jan 2:00 pm
message user image
Is this template really for free? That's unbelievable!
Sarah Bullock 23 Jan 2:05 pm
message user image
You better believe it!
Alexander Pierce 23 Jan 5:37 pm
message user image
Working with AdminLTE on a great new app! Wanna join?
Sarah Bullock 23 Jan 6:10 pm
message user image
I would love to.
{{-- favorites --}}
@foreach (auth()->user()->favorites as $favorite)
{{ $favorite->ad->name }}
{{ $favorite->ad->salary }}

{{ $favorite->ad->content }}

{{-- ad date and location --}}
{{ $favorite->ad->location }} {{ $favorite->ad->created_at->diffForHumans() }}
@endforeach
{{-- ads --}}
@foreach (auth()->user()->ads as $ad)
{{ $ad->name }}
{{ $ad->salary }}

{{ $ad->content }}

{{-- ad date and location --}}
{{ $ad->location }} {{ $ad->created_at->diffForHumans() }}
@endforeach
{{-- history --}}
@foreach (auth()->user()->histories() as $histories)
{{ $histories->first()->created_at->format('Y-m-d') }}
@foreach ($histories as $history) @endforeach @endforeach
{{-- profile information --}}
@csrf @method('PUT')
@error('full_name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone_number') {{ $message }} @enderror
@error('image') {{ $message }} @enderror