@extends('admin.layout.main') @section('content')

@if(isset($city)) Edit @else Add @endif City Management

@csrf @if(isset($city)) @method('PUT') @endif
@if(is_object($cities) && count($cities) > 0) @foreach($cities as $city) @endforeach @endif @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
@if ($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif
@if ($errors->has('sequence'))
{{ $errors->first('sequence') }}
@endif
@endsection @section('js') @endsection