{!! Form::open(['url' => action([\App\Http\Controllers\ContactController::class, 'storeMember']), 'method' => 'post', 'id' => 'member_add_form' ]) !!} @csrf

Add Member

{!! Form::label('date_of_birth', 'Date of Birth' . ':') !!}
{!! Form::text('date_of_birth', null, ['class' => 'form-control start-date-picker','placeholder' => 'Date of Birth', 'readonly']); !!}
@if ($allTagsString) Existing Tags: {{$allTagsString}} @endif Ensure that tags are separated by commas.
{!! Form::label('limit', 'Limit :') !!} {!! Form::text('limit', null, ['class' => 'form-control', 'placeholder' => 'Limit' ]); !!}  Unlimited
@if(auth()->user()->can('shopify.view'))
{!! Form::select('sync_shopify', $shopify_access, null, ['class' => 'form-control select2 hide', 'placeholder' => 'Choose Shopify Store', 'id' => 'sync_shopify']); !!}
@endif
{!! Form::label('start_date', 'Discount Starts' . ':') !!}
{!! Form::text('start_date', null, ['class' => 'form-control start-date-picker','placeholder' => 'Discount Starts', 'readonly']); !!}
{!! Form::label('end_date', 'Discount Ends' . ':') !!}
{!! Form::text('end_date', null, ['class' => 'form-control start-date-picker','placeholder' => __('business.end_date'), 'readonly']); !!}
{!! Form::close() !!}