@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('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('area')) {{ $errors->first('area') }} @endif
@if ($errors->has('location_type')) {{ $errors->first('location_type') }} @endif
@if ($errors->has('location')) {{ $errors->first('location') }} @endif
@if ($errors->has('bulstat')) {{ $errors->first('bulstat') }} @endif
@if ($errors->has('vat')) {{ $errors->first('vat') }} @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