@extends('layouts.master') @section('title') {{ $supplier->exists ? 'Edit Supplier' : 'New Supplier' }} @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Suppliers @endslot @slot('title') {{ $supplier->exists ? 'Edit Supplier' : 'New Supplier' }} @endslot @endcomponent @if($errors->any())
@endif
@csrf @if($supplier->exists) @method('PUT') @endif
Supplier Details
@php $selectedTypes = (array) old('supplier_type', $supplier->supplier_type ?? []); @endphp Select all categories this supplier provides.
is_active ?? true))>
Compliance & Eligibility
TCC / statutory doc expiry.
is_suspended))>
is_blacklisted))>
Blacklisted or suspended suppliers are blocked from new POs; non-compliant/expired triggers a warn-but-allow override at PO issue.
@endsection @section('script') @endsection