@section('title', __('mail.store_creation.title')) @extends('mail.master') @section('content')

{{ __('mail.common.greeting', ['name' => $userName]) }}

{{ __('mail.store_creation.body') }}

@include('mail.partials.card-row', [ 'label' => __('mail.common.store'), 'value' => $store->commercial_name, 'link' => route('str_stores.edit', $store->uuid), ]) @include('mail.partials.card-row', [ 'label' => __('mail.common.representative'), 'value' => $store->legalRepresentative->user->full_name, 'link' => route('usr_users.edit', $store->legalRepresentative->user->uuid), 'subtext' => $store->legalRepresentative->user->systemUser->login, 'highlighted' => false, 'last' => true, ])

{{ __('mail.store_creation.body_sub_1') }}

@endsection