@extends('super_admins.layouts.master') @section('title') Edit Country @endsection @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif

Country

@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('longitude')) {{ $errors->first('longitude') }} @endif
@if ($errors->has('latitude')) {{ $errors->first('latitude') }} @endif
@if ($errors->has('capital')) {{ $errors->first('capital') }} @endif
@if ($errors->has('currency')) {{ $errors->first('currency') }} @endif
@if ($errors->has('currency_symbol')) {{ $errors->first('currency_symbol') }} @endif
@if ($errors->has('region')) {{ $errors->first('region') }} @endif
@if ($errors->has('sub_region')) {{ $errors->first('sub_region') }} @endif
@if ($errors->has('phone_code')) {{ $errors->first('phone_code') }} @endif
@if ($errors->has('native')) {{ $errors->first('native') }} @endif
@if ($errors->has('iso_code_2')) {{ $errors->first('iso_code_2') }} @endif
@if ($errors->has('iso_code_3')) {{ $errors->first('iso_code_3') }} @endif
@if ($errors->has('emoji')) {{ $errors->first('emoji') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif @if ($country->image)
{{ $country->name }}
@else
-- No Image Selected
@endif
is_active) checked @endif class="custom-control-input" id="customSwitch1" aria-describedby="IsActiveError" aria-invalid="true">
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection