@extends('layouts.app') @section('title', 'Profile') @section('content')
{{-- --}}
Membership ID {{ $user->membership_id ?? 'N/A' }}
First Name {{ $user->first_name ?? 'N/A' }}
Last Name {{ $user->last_name ?? 'N/A' }}
Email Address {{ $user->email ?? 'N/A' }}
Phone Number {{ $user->phone ?? 'N/A' }}
Address {{ $user->address_1 ?? 'N/A' }} @if($user->address_2)
{{ $user->address_2 }} @endif
City {{ $user->city ?? 'N/A' }}
State {{ $user->userState->name ?? 'N/A' }}
ZIP {{ $user->zip ?? 'N/A' }}
County {{ $user->county->name ?? 'N/A' }}
Township [{{ $user->township->zip ?? 'N/A' }}] Updated townships coming soon.
Is Verified (to Vote)? {{ $user->is_verified ? 'Yes' : 'No' }} (A staff member needs to manually verify you to vote.)
Profile Photo
{{--
@method('put') @csrf

Photo ID
@method('put') @csrf

Photo ID Back
--}} {{--
@method('put') @csrf

Proof of Residence
@method('put') @csrf

Proof of Citizenship
--}}
@endsection