@extends('layouts.master') @section('title') Edit Branch @endsection @section('content') @php $oldCountry = old('region', $branch->countrys->id ?? null); $oldState = old('state', $branch->states->id ?? null); $oldCity = old('city', $branch->citys->id ?? null); $countries = \App\Models\Country::all(); $states = \App\Models\State::where('country_id', $oldCountry)->get(); $cities = \App\Models\City::where('state_id', $oldState)->get(); @endphp