@extends('admin.layouts.master') @section('title', 'Drop-down - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Drop down Setting') }}
@method("PUT") @csrf
{{ __('Select Role') }}:
{{ __('Please') }} {{ __('SelectanOption') }}
@foreach ($roles as $role)
role_id == $role->role_id ? 'selected' : ''}}>{{ $role->name }}
@endforeach
{{ __('My Courses') }} :
my_courses == 1 ? 'checked' : '' }} />
{{ __('My Wishlist ') }} :
my_wishlist == 1 ? 'checked' : '' }} />
{{ __('Purchased History') }} :
purchased_history == 1 ? 'checked' : '' }} />
{{ __('My Profile') }} :
my_profile == 1 ? 'checked' : '' }} />
{{ __('Flash Deal ') }} :
flash_deal == 1 ? 'checked' : '' }} />
{{ __('Donation') }} :
donation == 1 ? 'checked' : '' }} />
{{ __('My Wallet') }} :
my_wallet == 1 ? 'checked' : '' }} />
{{ __('Affiliate') }} :
affilate == 1 ? 'checked' : '' }} />
{{ __('Compare') }} :
compare == 1 ? 'checked' : '' }} />
{{ __('Search Job') }} :
search_job == 1 ? 'checked' : '' }} />
{{ __('Job Portal') }} :
job_portal == 1 ? 'checked' : '' }} />
{{ __('Forum and discussion') }} :
form_enable == 1 ? 'checked' : '' }} />
{{ __('My Leadership') }} :
my_leadership == 1 ? 'checked' : '' }} />
{{ __('Affiliate Dashboard') }} :
affilate_dashboard == 1 ? 'checked' : '' }} />
{{ __("Reset")}}
{{ __("Update")}}
@endsection