{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: province-city.blade.php ------------------------------------------------------ Use: A cascading province/city picker. The city list is filtered by the chosen province, from the local Iran divisions dataset -- no external service. ===================================================== --}} @props([ 'provinceName' => 'province', 'cityName' => 'city', 'province' => '', 'city' => '', 'accent' => 'primary', // 'primary' | 'secondary' 'required' => false, ]) @php $focus = $accent === 'secondary' ? 'focus:border-secondary-500' : 'focus:border-primary-600'; $selectClass = 'w-full appearance-none rounded-xl border-[1.5px] border-[#e3e1ec] bg-[#fbfbfd] px-3.5 py-3 text-sm outline-none transition focus:bg-white '.$focus; @endphp