@extends('layouts.app') @section('content') @section('css') @endsection

{{ isset($title)?$title:'' }}

@if(session('success'))
{{ session('success') }}
@endif
@csrf @foreach([ 'primary' => 'Primary', 'primary_hover' => 'Primary Hover', 'secondary' => 'Secondary', 'success' => 'Success', 'info' => 'Info', 'warning' => 'Warning', 'danger' => 'Danger' ] as $field => $label)
@error($field.'_color') {{ $message }} @enderror
@endforeach

Color Palette Preview

@foreach([ 'primary_color' => 'Primary', 'primary_hover_color' => 'Primary Hover', 'secondary_color' => 'Secondary', 'success_color' => 'Success', 'info_color' => 'Info', 'warning_color' => 'Warning', 'danger_color' => 'Danger' ] as $field => $label)
{{ $label }} {{ $settings->$field }}
@endforeach

@section('js') @endsection @endsection