@extends('layouts.master') @section('header-title') My Profile @endsection @section('header-elements') @endsection @section('content')
Personal information
@if(!$user->has_complete_info || !$user->is_terms_agreed )
Please complete the following actions to start using the system:
    @if($user->first_name == null || $user->first_name == '')
  • Write your First Name
  • @endif @if($user->last_name == null || $user->last_name == '')
  • Write your Last Name
  • @endif @if($user->telephone == null || $user->telephone == '')
  • Write your Telephone
  • @endif @if(!$user->is_terms_agreed)
  • Accept Katcon's General Terms and Conditions
  • @endif
@endif
{{ csrf_field() }}
(Country Code) + Number
Accepted formats: gif, png, jpg. Max file size 2Mb
@if($user->is_supplier)
Terms and Conditions

@if($user->terms_agreed_at) Agreed at {{$user->terms_agreed_at->format('d/m/Y')}} - Click on the button to open. @else Not agreed yet - Click on the button to open, then scroll down and accept. @endif

@endif @if ($errors->profileInfo->any())
    @foreach ($errors->profileInfo->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('messageInfoProfile'))
{{ Session::get('messageInfoProfile') }}
@endif
Account settings
{{ csrf_field() }}
At least:
- 6 characters
- 1 uppercase and 1 lowercase
- 1 number
- 1 special character
@if ($errors->profilePassword->any())
    @foreach ($errors->profilePassword->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('messagePasswordProfile'))
{{ Session::get('messagePasswordProfile') }}
@endif
{{ $user->full_name }}
@if($user->is_internal)
{{$user->email}}
Email
Katcon {{$user->plant->name}}
Plant
{{$user->department_name}}
Department
{{$user->title_name}}
Job Title
{{$user->title->parent->user_full_name}}
Lead
{{$user->title->parent->name}}
Lead Job Title
@elseif($user->is_supplier)
{{$user->email}}
Email
{{$user->supplier->name}}
Company
{{$user->supplier->full_address}}
Company Location
@can('changeSupplier',$user)
@component('components.button', ['id'=>'change_supplier_btn','type'=>'edit','text'=>'Change Company'])@endcomponent
@endcan @endif
Timezone

All the dates that are displayed in the system are ruled by the selected timezone.

You can change this value without affecting the database.

{{ csrf_field() }}
@endsection @section('plugin-scripts') @endsection @section('app-scripts') @endsection