@extends('super_admins.layouts.master') @section('title') Add States @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif State Home States Add State @csrf @if (isset($countries)) Select Country : @if (count($countries) > 0) Select Country @foreach ($countries as $country) id ? 'selected' : '' }}> {{ $country->name }} @endforeach @else No Country Exists @endif @if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif @endif Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Description {{ old('description') }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif Choose Picture @if ($errors->has('image')) {{ $errors->first('image') }} @endif Longitude @if ($errors->has('longitude')) {{ $errors->first('longitude') }} @endif Latitude @if ($errors->has('latitude')) {{ $errors->first('latitude') }} @endif Status Select State 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