@extends('layouts.merchant') @section('content')
@if(session('success'))
Success ! {!! Session::get('success') !!}
@elseif(session('failure'))
Failed ! {{ Session::get('failure') }}
@endif

General Details

Category {{ $merchant->merchantCategory->name ?? null }} > {{ $merchant->merchantSubCategory->name ?? null }}
Merchant Name {{ $merchant->name ?? null }}
Merchant ID {{ $merchant->merchant_key ?? null }}
Merchant Email {{ $merchant->email ?? null }}
Status @if($merchant->status) Active @else In-Active @endif
@csrf
{{$errors->first('logo')}}

Contact Details

Name Email Phone
Contact Person #1 {{ $contacts[0]->name ?? null }} {{ $contacts[0]->email ?? null }} {{ $contacts[0]->phone ?? null }}
Contact Person #2 {{ $contacts[1]->name ?? null }} {{ $contacts[1]->email ?? null }} {{ $contacts[1]->phone ?? null }}
Contact Person #3 {{ $contacts[2]->name ?? null }} {{ $contacts[2]->email ?? null }} {{ $contacts[2]->phone ?? null }}
@endsection