@extends('super_admins.layouts.master') @section('title') Add Countries @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif Country Home Countires Add Country @csrf Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Description {{ old('description') }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif Longitude @if ($errors->has('longitude')) {{ $errors->first('longitude') }} @endif Latitude @if ($errors->has('latitude')) {{ $errors->first('latitude') }} @endif Capital @if ($errors->has('capital')) {{ $errors->first('capital') }} @endif Currency @if ($errors->has('currency')) {{ $errors->first('currency') }} @endif Currency Symbol @if ($errors->has('currency_symbol')) {{ $errors->first('currency_symbol') }} @endif Region @if ($errors->has('region')) {{ $errors->first('region') }} @endif Sub Region @if ($errors->has('sub_region')) {{ $errors->first('sub_region') }} @endif Phone Code @if ($errors->has('phone_code')) {{ $errors->first('phone_code') }} @endif Native @if ($errors->has('native')) {{ $errors->first('native') }} @endif Iso Code 2 @if ($errors->has('iso_code_2')) {{ $errors->first('iso_code_2') }} @endif Iso Code 3 @if ($errors->has('iso_code_3')) {{ $errors->first('iso_code_3') }} @endif Emoji @if ($errors->has('emoji')) {{ $errors->first('emoji') }} @endif Choose Picture @if ($errors->has('image')) {{ $errors->first('image') }} @endif Status Select Country To Be Active Or Not {{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}} Submit @include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection