@extends('layouts.master') @section('styles') @endsection @section('content') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('admin.dashboard')], ['label' => 'Categories', 'url' =>route('admin.home.cat.index'), 'active' => false], ['label' => 'Button', 'url' =>route('admin.home.button.index'), 'active' => false], ['label' => 'Update', 'url' => '#', 'active' => true], ]; @endphp
@csrf
@include('components.ui.button-style-selector', [ 'selected' => old('background_color0', $data->btn_background ?? null), 'pickerValues' => [ old('background_color_code0', $data->background_color ?? null), ] ])
@endsection @section('scripts') @vite('resources/assets/js/select2.js') @endsection