@extends('layouts.app') @section('title', 'Edit Company - Quotation App') @section('styles') @endsection @section('content')

Edit Company

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Company Information

Address Information

Bank Information

Company Logos & Images

@if($company->logo_path)
Current Logo:
Company Logo
@endif JPG, PNG, GIF (Max 2MB) - Leave empty to keep current
@if($company->qr_code_path)
Current QR Code:
QR Code
@endif JPG, PNG, GIF (Max 2MB) - Leave empty to keep current
@if($company->web_logo_path)
Current Web Logo:
Web Logo
@endif JPG, PNG, GIF (Max 2MB) - Leave empty to keep current
@if($company->phone_icon_path)
Current Phone Icon:
Phone Icon
@endif JPG, PNG, GIF (Max 1MB) - Leave empty to keep current
@if($company->mail_icon_path)
Current Mail Icon:
Mail Icon
@endif JPG, PNG, GIF (Max 1MB) - Leave empty to keep current
Cancel
@endsection