@extends('frontend.layouts.master') @section('title', $user->name) @section('content') {{ $user->name }} Home Account {{ $user->name }} Avatar @if ($errors->has('file')){{ $errors->first('file') }}@endif {{ csrf_field() }} {!! method_field('patch') !!} Select New Avatar {{ csrf_field() }} {!! method_field('delete') !!} Delete Avatar Profile Details Username: {{ $user->name }} Email: {{ $user->email }} Location: {{ $user->location }} Joined: {{ $user->created_at->diffForHumans() }} Profile Last Updated: {{ $user->updated_at->diffForHumans() }} About Me: {{ $user->bio }} @include('frontend.account.profile.partials.sidebar') @endsection