@extends('layouts.admin.app') @section('css') @endsection @section('content')
@if ($errors->any())
{{trans('common.whoops')}}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ trans('admin.city_details')}}

@can('city-list') {{ trans('common.back') }} @endcan
@csrf
@error('country_id') {{ @$errors->first('country_id') }} @enderror
@error('name') {{ @$errors->first('name') }} @enderror
@endsection @section('js') @endsection