@extends('suppliers.layout') @section('suppliers.content')
@method('PUT') @csrf
@if($errors->has('name'))
{{$errors->first('name')}}
@endif
@if($errors->has('contacts'))
{{$errors->first('contacts')}}
@endif
@if($errors->has('address'))
{{$errors->first('address')}}
@endif
@if($errors->has('tin'))
{{$errors->first('tin')}}
@endif
@if($errors->has('balance'))
{{$errors->first('balance')}}
@endif
@endsection