2024-07-08 15:46:48 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('title_full', $customer->getFullName(true).' - '.__('Customer Profile'))
|
|
|
|
@section('body_class', 'sidebar-no-height')
|
|
|
|
|
|
|
|
@section('body_attrs')@parent data-customer_id="{{ $customer->id }}"@endsection
|
|
|
|
|
|
|
|
@section('sidebar')
|
2024-07-10 15:35:10 +00:00
|
|
|
<div class="profile-preview">
|
|
|
|
@include('customers/profile_menu')
|
|
|
|
@include('customers/profile_snippet')
|
|
|
|
</div>
|
2024-07-08 15:46:48 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2024-07-10 15:35:10 +00:00
|
|
|
@include('customers/profile_tabs')
|
|
|
|
@include('mmfrestrictedcustomers::customers/partials/edit_form')
|
2024-07-08 15:46:48 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('javascript')
|
2024-07-10 15:35:10 +00:00
|
|
|
@parent
|
|
|
|
multiInputInit();
|
2024-07-08 15:46:48 +00:00
|
|
|
@endsection
|