@extends('layouts.admin') @section('content')
@include('admin.application_settings.sidebar')

{{ __('Edit Country') }}

{{ __('Back') }}
@csrf @method('patch')
@if ($errors->has('country_name')) {{ $errors->first('country_name') }} @endif
@if ($errors->has('short_name')) {{ $errors->first('short_name') }} @endif
@if ($errors->has('phonecode')) {{ $errors->first('phonecode') }} @endif
@if ($errors->has('continent')) {{ $errors->first('continent') }} @endif
@updateButton
@endsection