@extends(MarketplaceHelper::viewPath('dashboard.layouts.master')) @section('content')
{!! Form::open(['route' => 'marketplace.vendor.settings', 'class' => 'ps-form--account-setting', 'method' => 'POST', 'enctype' => 'multipart/form-data']) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif {{ route('public.store', old('slug', $store->slug)) }}
@if (EcommerceHelper::isUsingInMultipleCountries())
{!! Form::error('country', $errors) !!}
@endif
@if (EcommerceHelper::loadCountriesStatesCitiesFromPluginLocation()) @else @endif {!! Form::error('state', $errors) !!}
@if (EcommerceHelper::loadCountriesStatesCitiesFromPluginLocation()) @else @endif {!! Form::error('city', $errors) !!}
@if (EcommerceHelper::isZipCodeEnabled())
{!! Form::error('zip_code', $errors) !!}
@endif
{!! Form::error('address', $errors) !!}
{!! Form::customImage('logo', old('logo', $store->logo)) !!} {!! Form::error('logo', $errors) !!}
{!! Form::customImage('cover_image', old('cover_image', $store->getMetadata('cover_image', true))) !!} {!! Form::error('cover_image', $errors) !!}
{!! Form::error('description', $errors) !!}
{!! Form::customEditor('content', old('content', $store->content)) !!} {!! Form::error('content', $errors) !!}
@include('plugins/marketplace::customers.tax-form', ['model' => $store->customer]) @include('plugins/marketplace::customers.payout-form', ['model' => $store->customer]) {!! apply_filters('marketplace_vendor_settings_register_content_tab_inside', null, $store) !!}
{!! Form::close() !!}
@stop