@extends('layouts.app')
@section('title', 'Trust Badges')
@section('nav_trust_badges', 'bg-teal-50 text-teal-700 font-semibold')
@section('page_title', 'Trust Badges & Accreditations')
@section('page_subtitle', 'DOT accreditation, awards & permits shown in the site footer')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($errors->any())
{{ $errors->first() }}
@endif
@php $inp = 'w-full border-[0.5px] border-gray-200 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-teal-500/20 focus:border-teal-400'; @endphp
@if($badges->isEmpty())
No badges yet. Add one above.
@else
@foreach($badges as $b)
@if($b->image_path)
 }})
@else
@endif
{{ $b->label }}
@if(!$b->active)Hidden@endif
{{ $b->subtitle }}{{ $b->subtitle && $b->number ? ' ยท ' : '' }}{{ $b->number }}
@endforeach
@endif
@endsection