@extends('backends.layouts.master_layout') @section('title',' Profile') @section('page_heading','Profile') @section('content')

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

Role: {{ucwords(auth()->user()->flag)}}

Company Name : {{auth()->user()->company_name == "" ? 'N/A': auth()->user()->company_name}}
Contact Person : {{auth()->user()->contact_person == "" ? "N/A" : auth()->user()->contact_person}}
Mobile Number : {{auth()->user()->mobile}}
Email : {{auth()->user()->email}}
Notes : {{auth()->user()->notes}}
{{--
--}} {{--
--}}
@endsection