@include('deal::public.shop.partial.header')
@include('deal::public.shop.partial.aside')
{{$shop->title}}

{!! $shop['id'] !!}

{!! $shop['user_id'] !!}

{!! $shop['user_type'] !!}

{!! $shop['country_id'] !!}

{!! $shop['state_id'] !!}

{!! $shop['district_id'] !!}

{!! $shop['location_id'] !!}

{!! $shop['parent_id'] !!}

{!! $shop['name'] !!}

{!! $shop['address'] !!}

{!! $shop['description'] !!}

{!! $shop['phone'] !!}

{!! $shop['website'] !!}

{!! $shop['email'] !!}

{!! $shop['working_hours'] !!}

{!! $shop['logo'] !!}

{!! $shop['main_branch'] !!}

{!! $shop['images'] !!}

{!! $shop['latitude'] !!}

{!! $shop['longitude'] !!}

{!! $shop['slug'] !!}

{!! $shop['published'] !!}

{!! $shop['upload_folder'] !!}

{!! $shop['created_at'] !!}

{!! $shop['updated_at'] !!}

{!! $shop['deleted_at'] !!}
{!! Form::numeric('country_id') -> label(trans('deal::shop.label.country_id')) -> placeholder(trans('deal::shop.placeholder.country_id'))!!}
{!! Form::numeric('state_id') -> label(trans('deal::shop.label.state_id')) -> placeholder(trans('deal::shop.placeholder.state_id'))!!}
{!! Form::numeric('district_id') -> label(trans('deal::shop.label.district_id')) -> placeholder(trans('deal::shop.placeholder.district_id'))!!}
{!! Form::numeric('location_id') -> label(trans('deal::shop.label.location_id')) -> placeholder(trans('deal::shop.placeholder.location_id'))!!}
{!! Form::numeric('parent_id') -> label(trans('deal::shop.label.parent_id')) -> placeholder(trans('deal::shop.placeholder.parent_id'))!!}
{!! Form::text('name') -> label(trans('deal::shop.label.name')) -> placeholder(trans('deal::shop.placeholder.name'))!!}
{!! Form::text('address') -> label(trans('deal::shop.label.address')) -> placeholder(trans('deal::shop.placeholder.address'))!!}
{!! Form::text('description') -> label(trans('deal::shop.label.description')) -> placeholder(trans('deal::shop.placeholder.description'))!!}
{!! Form::tel('phone') -> label(trans('deal::shop.label.phone')) -> placeholder(trans('deal::shop.placeholder.phone'))!!}
{!! Form::url('website') -> label(trans('deal::shop.label.website')) -> placeholder(trans('deal::shop.placeholder.website'))!!}
{!! Form::email('email') -> label(trans('deal::shop.label.email')) -> placeholder(trans('deal::shop.placeholder.email'))!!}
{!! Form::text('working_hours') -> label(trans('deal::shop.label.working_hours')) -> placeholder(trans('deal::shop.placeholder.working_hours'))!!}
{!! $shop->files('image') ->url($shop->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $shop->files('image') ->editor()!!}
{!! Form::inline_radios('main_branch') -> radios(trans('deal::shop.options.main_branch')) -> label(trans('deal::shop.label.main_branch'))!!}
{!! $shop->files('images', 10) ->mime(config('filer.image_extensions')) ->url($shop->getUploadUrl('images')) ->dropzone()!!}
{!! $shop->files('images') ->editor()!!}
{!! Form::text('latitude') -> label(trans('deal::shop.label.latitude')) -> placeholder(trans('deal::shop.placeholder.latitude'))!!}
{!! Form::text('longitude') -> label(trans('deal::shop.label.longitude')) -> placeholder(trans('deal::shop.placeholder.longitude'))!!}
{!! Form::inline_radios('published') -> radios(trans('deal::shop.options.published')) -> label(trans('deal::shop.label.published'))!!}