@extends('backend.layouts.app') @section('content') @if (env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
{{ translate('You need to configure SMTP correctly to to add Seller.') }} {{ translate('Configure Now') }}
@endif
{{translate('Add New Seller')}}
{{translate('Seller Information')}}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('shop_name')) {{ $errors->first('shop_name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@endsection