@extends('admin.layout') @section('content')
@csrf
{{ __('Update Website Appearance') }}
@if ($errors->has('primary_color'))

{{ $errors->first('primary_color') }}

@endif
@if ($errors->has('secondary_color'))

{{ $errors->first('secondary_color') }}

@endif
@if ($errors->has('breadcrumb_overlay_color'))

{{ $errors->first('breadcrumb_overlay_color') }}

@endif
@if ($errors->has('breadcrumb_overlay_opacity'))

{{ $errors->first('breadcrumb_overlay_opacity') }}

@endif

{{ __('This will decide the transparency level of the overlay color.') }}
{{ __('Value must be between 0 to 1.') }}
{{ __('Transparency level will be lower with the increment of the value.') }}

@endsection