@extends('layouts.app') @section('title', 'profile') @section('content') Nominees Home Settings My Nominees Add Nominee My Nominees Download # Name Contact Relationship Percentage Action @forEach($nominees as $nominee) @if($nominee->user_id == Auth()->user()->id) {{$nominee->name}} {{$nominee->phone}} {{$nominee->relationship}} {{$nominee->percentage}}% @endif @endforeach @csrf Full Name @error('name') {{ $message }} @enderror Relationship Choose... Mother Father Brother Sister Son Daughter Other Phone @error('phone') {{ $message }} @enderror Percentage @error('percentage') {{ $message }} @enderror Save Changes @endsection @pushOnce('scripts') @endpushOnce