@extends('backend.superadmin.index') @section('body') Add New User @if(session('success')) Success {{session('success')}} × @endif @if(session('error')) Error {{session('error')}} × @endif @if($errors->any()) @foreach($errors->all() as $error) Error {{$error}} @endforeach × @endif {{csrf_field()}} Photo Update Full Name * Gender* Male Female Other Citizenship No. * Date of Birth Mobile No.* Father Name * Country* --Choose Type-- @foreach($countries as $country) id) selected @endif>{{$country->name}} @endforeach State* --Select-- @if(old('state_id'))) @php $country = \App\Country::find(old('country_id')); @endphp @foreach($country->states()->orderBy('name')->get() as $state) id) selected @endif>{{$state->name}} @endforeach @endif District* --Select-- @if(old('district_id')) @php $state_value = \App\State::find(old('state_id')); @endphp @foreach($state_value->districts()->orderBy('name')->get() as $district) id) selected @endif>{{$district->name}} @endforeach @endif MNP/NP/VDC* --Select-- @if(old('city_id')) @php $district_value = \App\District::find(old('district_id')); @endphp @foreach($district_value->cities()->orderBy('name')->get() as $city) id) selected @endif>{{$city->name}} @endforeach @endif Tole Ward No. Employment Status Company Name Company Address Designation Login Details Username Email Password Next Submit @endsection @section('script') @endsection