@extends('layouts.seller.app', [ 'page' => $menuSeller['stores']['active'] ?? "", ]) @section('title', __('labels.add_store')) @section('header_data') @php $page_title = __('labels.add_store'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('seller.dashboard')], ['title' => __('labels.stores'), 'url' => route('seller.stores.index')], ['title' => __('labels.add_store'), 'url' => ''] ]; @endphp @section('seller-content')
@include('components.page_header', ['title' => empty($store) ? "Register New Store" : "Update ".$store->name." Store", 'step' => 2])
@csrf

{{ __('labels.basic_details') }}

{{ __('labels.location_details') }}

{{ __('labels.logo_and_banner') }}

@error('store_logo')
{{ $message }}
@enderror
@error('store_banner')
{{ $message }}
@enderror

{{ __('labels.business_documents') }}

{{ __('labels.bank_details') }}

@endsection @push('scripts') @endpush