@extends('authenticated') @section('title', 'Dashboard') @section('content')
@include('commons.topbar')

Profile

@csrf @if(!is_null($user->profile->avatar)) @else @endif

{{trim($user->profile->firstname.' '.$user->profile->lastname)}}

Username/Email:{{$user->email}}
Mobile:{{$user->profile->mobile}}
Address:{{$user->profile->address}}
Role:{{ucfirst($user->role)}}
Receive Newsletter:{{$user->profile->newsletter > 0 ? 'Yes' : 'No'}}
Member since:{{$user->created_at}}

{{trim($user->profile->firstname.' '.$user->profile->lastname)}}

@foreach($noption as $option)
@endforeach
Leave blank if you're not updating this.
@include('commons.modal', ['modal_id'=>'user-modal', 'save_btn_classes' => 'save-user']) @endsection @section('modulescript') @parent @endsection