@extends('layouts.app') @section('title', __('New Supplier')) @section('content')
{{ __('New Supplier') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @else {{ __('Supplier name is Required') }} @endif
@endsection @section('scripts') @endsection