@extends('layouts.app') @php $isEdit = isset($supplier); @endphp @section('title', $isEdit ? 'Edit Supplier' : 'Add Supplier') @section('content')

{{ $isEdit ? 'Edit Supplier' : 'Add New Supplier' }}

Back to Suppliers
@csrf @if($isEdit) @method('PUT') @endif

Company Information

{{--
--}}

Contact Information

{{--

Address

--}}

Payment Terms

{{--
--}}
@endsection