@extends('site.layout.layout') @section('content')

التسجيل كشريك

تسجيل كشريك

{!! Form::open(['route' => 'site.register.store','method' => 'POST','files' => true,'id' => 'example-form', 'novalidate' => 'novalidate']) !!}
@foreach (array_chunk(config('translatable.locales'),1) as $chunk)
@foreach ($chunk as $locale)
{!! Form::text("store[$locale][name]", null, ['class' => 'form-control rounded','placeholder' => trans('dashboard.'.$locale.'.store')]) !!}
{!! Form::text("store[$locale][cuisine_type]", null, ['class' => 'form-control rounded','placeholder' => trans('dashboard.'.$locale.'.cuisine_type')]) !!}
@endforeach
@endforeach
{!! Form::select('store[country_id]', $countries, null , ['class' => 'select2 w-100 rounded' , 'placeholder' => trans('dashboard.country.country') ,'onchange' => 'getRegion(this.value)']) !!}
اختر ملف ..
اختر ملف السجل التجاري ..
{!! Form::select('store[category_id]', $categories, null , ['class' => 'select2 w-100 rounded', 'placeholder' => trans('dashboard.store_category.store_category')]) !!}
{!! Form::text('store[number_of_branches]', null, ['placeholder' => trans('dashboard.store.number_of_branches'),'class' => 'form-control rounded']) !!}
{!! Form::text('store[website_url]', null, ['placeholder' => trans('dashboard.store.website_url'),'class' => 'form-control rounded']) !!}

{!! trans('dashboard.store.part_of_franchise') !!}

{!! Form::radio('store[part_of_franchise]', 1, null, ["class" => "custom-control-input",'id' => 'part_of_franchise_yes']) !!}
{!! Form::radio('store[part_of_franchise]', 0, null, ["class" => "custom-control-input",'id' => 'part_of_franchise_no']) !!}

{!! trans('dashboard.store.provide_delivery_service') !!}

{!! Form::radio('store[provide_delivery_service]', 1, null, ["class" => "custom-control-input",'id' => 'provide_delivery_service_yes']) !!}
{!! Form::radio('store[provide_delivery_service]', 0, null, ["class" => "custom-control-input",'id' => 'provide_delivery_service_no']) !!}

{!! trans('dashboard.store.on_another_delivery_app') !!}

{!! Form::radio('store[on_another_delivery_app]', 1, null, ["class" => "custom-control-input",'id' => 'on_another_delivery_app_yes']) !!}
{!! Form::radio('store[on_another_delivery_app]', 0, null, ["class" => "custom-control-input",'id' => 'on_another_delivery_app_no']) !!}
{!! Form::text('store[lat]', null, ['id' => 'lat', 'class' => 'form-control','readonly']) !!}
{!! Form::text('store[lng]', null , ['id' => 'lng', 'class' => 'form-control','readonly']) !!}
{!! Form::text('store[location]', null , [ 'class' => "form-control" ,'id' => "searchBox" , 'placeholder' => trans('dashboard.map.write_your_location_address')]) !!}

أدخل بيانات التواصل

{!! Form::text('seller[fullname]', null, ['class' => 'form-control rounded','placeholder' => trans('dashboard.user.fullname')]) !!}
{!! Form::text('seller[email]', null, ['class' => 'form-control rounded','placeholder' => trans('dashboard.general.email')]) !!}
{!! Form::text('seller[phone]', null, ['class' => 'form-control rounded','placeholder' => trans('dashboard.general.phone')]) !!}
{!! Form::close() !!}
@endsection @section('scripts') @include('site.auth.form_map') @endsection