@extends(MarketplaceHelper::viewPath('dashboard.layouts.master')) @section('content')
{!! Form::open(['route' => 'marketplace.vendor.settings', 'method' => 'POST', 'enctype' => 'multipart/form-data']) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @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) !!}
{!! Form::error('address', $errors) !!}
{!! Form::customImage('logo', old('logo', $store->logo)) !!} {!! Form::error('logo', $errors) !!}
{!! Form::error('description', $errors) !!}
{!! Form::customEditor('content', old('content', $store->content)) !!} {!! Form::error('content', $errors) !!}
@include('plugins/marketplace::customers.bank-info-content', ['model' => $store->customer]) {!! apply_filters('marketplace_vendor_settings_register_content_tab_inside', null, $store) !!}
{!! Form::close() !!}
@stop