@extends('layouts.app') @section('content')

{{ __('suppliers.edit') }}

@if ($errors->any())

{{ __('common.errors_title') ?? 'Lütfen hataları düzeltin' }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('suppliers.details') }}

@csrf @method('PUT')
{{ __('common.cancel') ?? 'İptal' }}
@endsection