@if( isset($member) && !empty(url('/'.$member->photo_url)))
Photo
@endif
{{Form::file('photo_url')}} @if ($errors->has('photo_url')) {{ $errors->first('photo_url') }} @endif
{{Form::text('name', null,['id' => 'name','class'=>'form-control','placeholder'=>'Name'])}} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{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('dob',null,['id' => 'dob','class'=>'form-control datetimepicker-input', 'data-target'=> '#datepicker','data-toggle'=>'datetimepicker'])}}
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
{{Form::select('gender',['M'=>'Male','F'=>'Female'], null,['id' => 'gender','class'=>'form-control'])}} @if ($errors->has('gender')) {{ $errors->first('gender') }} @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::Label('city', 'City',['class' =>"d-block"]) !!} {{-- --}} {{Form::text('city', null,['id' => 'city','class'=>'form-control','placeholder'=>'City'])}}
{{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
{{Form::select('status',['1'=>'Active','0'=>'InActive'], $status,['id' => 'status','class'=>'form-control '])}} @if ($errors->has('status')) {{ $errors->first('status') }} @endif