@extends('layouts.v2.frontend-user-backend') @section('title', '| Profile') @section('content')

Profile

{{-- This information will be displayed publicly to consultants on your brand page. --}}

@if(isset($profile_show_data_error) || $profile_show_data_error = Session::get('profile_show_data_error'))
{{ $profile_show_data_error }}
@endif @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@if(!isset($profile_show_data_error))
@endif
@if(isset(auth()->user()->profile_pic)) @else @endif
{{ $user->name }}
@endsection