@extends('backend.layout.main') @section('content') {{__('db.Update Supplier')}} {{__('db.The field labels marked with * are required input fields')}}. {!! Form::open(['route' => ['supplier.update', $lims_supplier_data->id], 'method' => 'put', 'files' => true]) !!} {{__('db.name')}} * {{__('db.Image')}} @if($errors->has('image')) {{ $errors->first('image') }} @endif {{__('db.Company Name')}} * @if($errors->has('company_name')) {{ $errors->first('company_name') }} @endif {{__('db.VAT Number')}} {{__('db.Email')}} * @if($errors->has('email')) {{ $errors->first('email') }} @endif {{__('db.Phone Number')}} * {{__('db.Address')}} * {{__('db.City')}} * {{__('db.State')}} {{__('db.Postal Code')}} {{__('db.Country')}} {!! Form::close() !!} @endsection @push('scripts') @endpush
{{__('db.The field labels marked with * are required input fields')}}.