@extends('layouts.master') @section('pagetitle') My Profile @endsection @section('title') My Profile @endsection @section('content') @php use App\Models\MerchantSite; $merchant_sites = MerchantSite::where('merchant_id', @auth('web')->user()->id)->first(); @endphp
@include('layouts.alert')

{{ $merchants->name }}


@if( $merchants->image) @else @endif
Business Name

{{ $merchants->name }}

Business Type

{{ ucfirst($merchants->business_type) }}

@if($merchant_sites->business_type == 'grocery')
Site Type

{{ ucfirst($merchants->site_type) }}

@endif
Country

{{ $merchants->country }}

Phone

{{ $merchants->phone }}

Address

{{ $merchants->address }}

Status


Cover Photo:
@if( $merchants->image) @else @endif
@endsection @section('script') @endsection