@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Card Templates')) @push('css') @endpush @section('content')
@if (session()->has('message'))
{{ session('message') }}
@endif

{{ __('ID & Visiting Card Templates') }}

{{ __('Choose one active template per card type. All employees will use the selected design.') }}

{{ __('Settings') }}
@csrf
{{ __('ID Card Templates') }} {{ __('Select one') }}
@foreach($idTemplates as $id => $tpl) @endforeach
{{ __('Visiting Card Templates') }} {{ __('Select one') }}
@foreach($visitingTemplates as $id => $tpl) @endforeach
@can('Settings-edit') @endcan {{ __('Employees generate cards from staff profile using these templates.') }}
@endsection @push('script') @endpush