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