24 lines
615 B
PHP
24 lines
615 B
PHP
|
@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')
|
||
|
<div class="profile-preview">
|
||
|
@include('customers/profile_menu')
|
||
|
@include('customers/profile_snippet')
|
||
|
</div>
|
||
|
@endsection
|
||
|
|
||
|
@section('content')
|
||
|
@include('customers/profile_tabs')
|
||
|
@include('freescout-restricted-customers::customers/partials/edit_form')
|
||
|
@endsection
|
||
|
|
||
|
@section('javascript')
|
||
|
@parent
|
||
|
multiInputInit();
|
||
|
@endsection
|