@extends('layouts.app') @section('title', 'Company Settings - Edit') @section('content')

Edit Company Settings

Edit Company Information
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if($companySettings->logo_path)

Current logo:

Current Logo
@endif
Bank Details
@php $bankDetails = old('bank_name', $companySettings->bank_details); if (!is_array($bankDetails)) { $bankDetails = []; } @endphp @foreach($bankDetails as $index => $bank)
@endforeach
Cancel
@endsection @section('styles') @endsection @section('scripts') @endsection