@extends('layouts.main') @section('title', 'Store Label') @section('content') @push('head') @endpush
@include('include.message')
@can('create-store-label') @endcan
@csrf
{!! Form::select('type_status', $typeStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Type Status']) !!}
{!! Form::select('delete_status', $deleteStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Delete Status']) !!}
{!! Form::select('element_status', $elementStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Element Status']) !!}
{{ __('Id')}} {{ __('Label')}} {{ __('Icon Color')}} {{ __('Icon')}} {{ __('Group')}} {{ __('Geo')}} {{ __('Repeation')}} {{ __('Start Date')}} {{ __('End Date')}} {{ __('Status')}} {{ __('Action')}}
@canany(['bulk-delete-store-label', 'bulk-restore-store-label'])
@endcan
@push('script') @endpush @endsection