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

{{__('texte.suppliers_arr.create.add_supplier')}}

{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('mol')) {{ $errors->first('mol') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
here goes the image
@if ($errors->has('images.*')) {{ $errors->first('images.*') }} @endif
@if ($errors->has('upload_files.*')) {{ $errors->first('upload_files.*') }} @endif

@endsection