@extends('layouts/contentLayoutMaster') @section('title', 'Candidate Edit') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') @if($message = Session::get('success')) @endif
{{ csrf_field() }}
@if($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
@if($errors->has('middle_name'))

{{ $errors->first('middle_name') }}

@endif
@if($errors->has('last_name'))

{{ $errors->first('last_name') }}

@endif
@if($errors->has('co_relation'))

{{ $errors->first('co_relation') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('country_code'))

{{ $errors->first('country_code') }}

@endif
@if($errors->has('mobile'))

{{ $errors->first('mobile') }}

@endif
  • gender == 'M' ? 'checked' : '' }} type="radio" name="gender" value="M"> Male
  • gender == 'F' ? 'checked' : '' }} type="radio" name="gender" value="F"> Female
  • gender == 'O' ? 'checked' : '' }} type="radio" name="gender" value="O"> Other
  • notify_by_email) && $userpref->notify_by_email == 'Y' ? 'checked' : '' }} name="notify_by_email" value="Y"> Notify by Email
  • notify_by_wa) && $userpref->notify_by_wa == 'Y' ? 'checked' : '' }} name="notify_by_wa" value="Y"> Notify by Whatsapp
@if($userpics)
    @foreach($userpics as $userpic)
  • @endforeach
@endif
Select image to crop:
@if($address) {{-- @dd($address) --}} @foreach($address as $k => $addr)

{{ $addr->type }}

{{ $addr->street_addr1 }} {{ $addr->street_addr2 }} {{ $addr->village }} {{ $addr->post_office }} {{ $addr->police_station }} {{ $addr->district }} {{ $addr->near_by }} {{ $addr->city }} {{ $addr->state }} {{ $addr->pincode }} {{ $addr->country }} {{ $addr->stayed_from }} {{ $addr->stayed_to }} {{ $addr->verified_by }} {{ $addr->is_verified }} {{ $addr->status }}

@endforeach @endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection