@extends('layouts.app') @section('title', 'Edit Supplier') @section('content')

Edit Supplier

Update supplier information

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('codename')

{{ $message }}

@enderror
@error('contact_person')

{{ $message }}

@enderror
@error('contact_number')

{{ $message }}

@enderror
@error('location')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Created: {{ $supplier->created_at->format('M d, Y') }} @if($supplier->created_at != $supplier->updated_at) | Last Updated: {{ $supplier->updated_at->format('M d, Y') }} @endif
Cancel

Danger Zone

Delete this supplier

Once deleted, this supplier and all associated price records will be permanently removed.

@csrf @method('DELETE')
@endsection