@extends('layouts.app') @section('title', isset($user) ? __('labels.edit_Profile & Company Data') : __('labels.create_Profile & Company Data')) @push('pageTitle') {{ __('labels.user_profile_and_company_data') }} @endpush @section('css') @endsection @section('js') {{-- --}} @endsection @section('content') @include('components.common.page-header', [ 'pageTitle' => isset($user) && isset($readonly) && $readonly ? __('labels.user_profile_company_data') : (isset($user) ? __('labels.edit_user_profile') : __('labels.add_new_profile')), 'actionButton' => [ 'url' => route('users.index'), 'text' => __('labels.back_to_list'), ], ]) @include('components.common.flush-message') @include('components.common.validation-errors')
@endsection