{{Form::email('email', null,['id' => 'email','class'=>'form-control','placeholder'=>'Email'])}}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{Form::text('mobile', null,['id' => 'mobile','class'=>'form-control','placeholder'=>'Mobile'])}}
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
{{Form::text('contact_info', null,['id' => 'contact_info','class'=>'form-control','placeholder'=>'Contact-Info'])}}
@if ($errors->has('contact_info'))
{{ $errors->first('contact_info') }}
@endif
{{Form::text('pob', null,['id' => 'pob','class'=>'form-control','placeholder'=>'Hyderabad'])}}
@if ($errors->has('pob'))
{{ $errors->first('pob') }}
@endif
{{Form::select('mother_tongue_id',$motherTongueArr,$motherTongueId,['id' => 'mother_tongue_id','class'=>'form-control select2'])}}
@if ($errors->has('mother_tongue_id'))
{{ $errors->first('mother_tongue_id') }}
@endif
{{Form::select('religion_id',$religionArr,$religionId,['id' => 'religion_id','class'=>'form-control select2'])}}
@if ($errors->has('religion_id'))
{{ $errors->first('religion_id') }}
@endif
{{Form::select('caste_id',$casteArr,$casteId,['id' => 'caste_id','class'=>'form-control select2'])}}
@if ($errors->has('caste_id'))
{{ $errors->first('caste_id') }}
@endif
{{Form::text('sub_caste', null,['id' => 'sub_caste','class'=>'form-control','placeholder'=>'Sub caste.....'])}}
@if ($errors->has('sub_caste'))
{{ $errors->first('sub_caste') }}
@endif
{{Form::text('gothram', null,['id' => 'gothram','class'=>'form-control','placeholder'=>'Gothram.....'])}}
@if ($errors->has('gothram'))
{{ $errors->first('gothram') }}
@endif
{{Form::textarea('residence_address', null,['id' => 'residence_address','class'=>'form-control','placeholder'=>'Address'])}}
@if ($errors->has('residence_address'))
{{ $errors->first('residence_address') }}
@endif
{!! Form::Label('country', 'Country',['class' =>"d-block"]) !!}
{{-- --}}
{{Form::select('country',$countryArr,$country,['id' => 'country_id','class'=>'form-control select2'])}}
{!! Form::Label('state', 'State',['class' =>"d-block"]) !!}
{{-- --}}
{{Form::text('state', null,['id' => 'state','class'=>'form-control','placeholder'=>'State'])}}
{{Form::password('password',['id' => 'password','class'=>'form-control'])}}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{Form::password('password_confirmation',['id' => 'password_confirmation','class'=>'form-control'])}}
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif