@extends('layouts.default') @section('content')
Edit HR
{{ Userdefined::showMessage() }}
Name
*
Email
*
Mobile
*
Select Country
@foreach($countries as $country)
{{ $country->name }}
@endforeach
Country
*
Select State
@foreach($states as $state) @if($state->country_id==$hr->country)
{{ $state->name }}
@endif @endforeach
State
Select City
@foreach($cities as $city) @if($city->state_id==$hr->state)
{{ $city->name }}
@endif @endforeach
City
{{ $hr->address }}
Address
Select Status
Active
IN Active
Status
Password
Reset
Submit
{{ csrf_field() }} {{ method_field('PUT') }}