@extends('layouts.admin') @section('title', 'User') @section('content')

User

User
@if(Auth::user()->hasRole(['Webmaster', 'Admin']) && Auth::id() != $user->id) @endif {{-- --}} {{-- --}} {{-- --}}
First Name {{ $user->first_name }}
Last Name {{ $user->last_name }}
E-Mail Address {{ $user->email }}
Phone Number {{ $user->phone }}
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' }}
State Role {{ $user->stateRole->name ?? 'N/A' }}
County {{ $user->county->name ?? 'N/A' }}
County Role {{ $user->countyRole->name ?? 'N/A' }}
Township [{{ $user->township->zip ?? 'N/A' }}]
Profile Photo Profile Photo
Photo ID Front Photo ID Front
Photo ID Back Photo ID Back
Proof of Residence Proof of Residence
Proof of Citizenship Proof of Citizenship
Is Verified? {{ $user->is_verified ? 'Yes' : 'No' }}
Created At {{ $user->created_at->format('m/d/Y @ g:ia') }}
Last Updated {{ $user->updated_at->format('m/d/Y @ g:ia') }}
id) }} method="post" class="d-none"> @csrf @method('put')
id) }} method="post" class="d-none"> @csrf @method('put')
id) }} method="post" class="d-none"> @csrf @method('delete')
@endsection @push('scripts') @endpush