@extends('home.partial.layout') @section('content')

Dashboard Card Settings

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{ session('success') }}
@endif @if(Session::has('error'))
{{ session('error') }}
@endif
@csrf @foreach($roles as $eachrole) @endforeach
Roles Dashboard Cards
{{strtoupper($eachrole->name)}} @foreach($cards as $key => $eachcard) @php if(isset($curacc[$eachrole->id]) && in_array($key, $curacc[$eachrole->id])){ $checked = 'checked'; }else{ $checked = ''; } @endphp {{$eachcard}} @endforeach
@endsection @section('script') @endsection