@extends('frontend.layouts.member-app') @section('content')
@include('frontend.become-member.membership-header')

Golfing Background

@if (Session::has('message'))
{{Session::get('message')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @php if(old('has_golf_background')){ $has_golf_background = old('has_golf_background'); }elseif($editData){ $has_golf_background = $editData->has_golf_background; }else{ $has_golf_background = null; } if(old('has_other_club_ms')){ $has_other_club_ms = old('has_other_club_ms'); }elseif($editData){ $has_other_club_ms = $editData->has_other_club_ms; }else{ $has_other_club_ms = null; } if(old('other_club_name_no')){ $other_club_name_no = old('other_club_name_no'); }elseif($editData){ $other_club_name_no = $editData->other_club_name_no; }else{ $other_club_name_no = null; } if(old('start_of_play')){ $start_of_play = old('start_of_play'); }elseif($editData){ $start_of_play = $editData->start_of_play; }else{ $start_of_play = null; } if(old('handicap')){ $handicap = old('handicap'); }elseif($editData){ $handicap = $editData->handicap; }else{ $handicap = null; } if(old('additional_golf_background ')){ $additional_golf_background = old('additional_golf_background '); }elseif($editData){ $additional_golf_background = $editData->additional_golf_background ; }else{ $additional_golf_background = null; } @endphp
@endsection