@extends('layouts.app') @section('title', 'Account Settings') @section('content')
@if(session('success'))
Success

{{ session('success') }}

@endif @if(session('error'))
Update Failed

{{ session('error') }}

@endif @if($errors->any())
Update Failed
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Profile Profile Information View and update your profile information, or change your password.

Manage your account details and password.

@if(!empty($company->company_logo) && file_exists(public_path('company/' . $company->company_logo))) company logo @else default logo @endif

{{ $company->company_name }}

{{ $company->company_email }}

{{ $company->company_phone }}

Edit Profile

@csrf
@if(!empty($company->company_logo) && file_exists(public_path('company/' . $company->company_logo))) @else @endif
No file chosen

Update Password

@csrf
@endsection