@extends('backend.layouts.app') @section('content')
@if($editData)
@else @endif @csrf

Personal Information

@php if(old('full_name')){ $full_name = old('full_name'); }elseif($editData){ $full_name = $editData->full_name; }else{ $full_name = null; } if(old('father_name')){ $father_name = old('father_name'); }elseif($editData){ $father_name = $editData->father_name; }else{ $father_name = null; } if(old('mother_name')){ $mother_name = old('mother_name'); }elseif($editData){ $mother_name = $editData->mother_name; }else{ $mother_name = null; } if(old('gender')){ $gender = old('gender'); }elseif($editData){ $gender = $editData->gender; }else{ $gender = null; } if(old('marital_status')){ $marital_status = old('marital_status'); }elseif($editData){ $marital_status = $editData->marital_status; }else{ $marital_status = null; } if(old('dob')){ $dob = old('dob'); }elseif($editData){ $dob = $editData->dob; }else{ $dob = null; } if(old('country_id')){ $country_id = old('country_id'); }elseif($editData){ $country_id = $editData->country_id; }else{ $country_id = 19; } if(old('member_category_id')){ $member_category_id = old('member_category_id'); }elseif($editData){ $member_category_id = $editData->member_category_id; }else{ $member_category_id = null; } if(old('blood_group')){ $blood_group = old('blood_group'); }elseif($editData){ $blood_group = $editData->blood_group; }else{ $blood_group = null; } if(old('additional_info')){ $additional_info = old('additional_info'); }elseif($editData){ $additional_info = $editData->additional_info; }else{ $additional_info = null; } if(old('ba_no')){ $ba_no = old('ba_no'); }elseif($editData){ $ba_no = $editData->ba_no; }else{ $ba_no = null; } @endphp
...
Select image Change Remove
@error('member_photo') {{$message}} @enderror
@if($errors->has('full_name'))
{{$errors->first('full_name')}}
@endif
@if($errors->has('password'))
{{$errors->first('password')}}
@endif
@if($errors->has('additional_info'))
{{$errors->first('additional_info')}}
@endif
@endsection @section('page_script') @endsection