@extends('backend.index') @section('content') @if(isset($city))
{{ $city->name }}

{{ $city->continent }}

@endif
@csrf
{!! makeCountryDropDown('country_code', 'form-control select2-active', isset($city) ? $city->country->code : null) !!}
@endsection