@extends('layouts.app') @section('title', __('app.my_profile')) @section('content') @include('layouts.partials.breadcrumb',['page_title'=> __( 'app.my_profile') , 'bread_crumbs'=>array( array('title'=>__('app.profile'),'url'=>''))])
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach

{{ $user->first_name . " ".$user->last_name }}

@php $profile_photo = auth()->user()->media; @endphp @if(!empty($profile_photo)) @else User Avatar @endif

Email :{{ $user->email }}

Phone :{{ $user->contact_number }}

Address :{{ $user->permanent_address }}

Social Profile

@endsection @section('javascript') @endsection