@extends('layouts.app', ['activePage' => 'members-voting', 'titlePage' => __('Resolution Voting Preview ')]) @section('content')
@if(Auth::user()->role_id == '5')

Please check your vote carefully before click on Submit.
Once you click on Submit your vote for all resolution you have reacted will be recorded and can be changed in between the schedule voting start and end date & time
Leaving a resolution selection blank

@if (session('message'))
{{ session('message') }}
@endif @if(Session::has("success"))
{{Session::get("success")}}
@elseif(Session::has("failed")) {{Session::get("failed")}} @endif
@csrf
{{$resolution->entity_name}}
{{$resolution->evsn}}
From {{Carbon\Carbon::parse($resolution->voting_start_date)->format('d-m-Y')}} To {{Carbon\Carbon::parse($resolution->voting_end_date)->format('d-m-Y')}}
{{count($selectedRes)}}/{{$total_resolutions}}
@if($resolution_desc) @foreach($resolution_desc as $key => $value) @endforeach @else @endif
SR.No. View Resolution Resolution Description Choice
{{($key+1)}} View Resolution {{$value->description }} @if($selectedRes[$value->id] == 'yes') I assent(Yes) to the Resolution @endif @if($selectedRes[$value->id] == 'no') I dissent(No) to the Resolution @endif @if($selectedRes[$value->id] == 'abstain') I Abstain to the Resolution @endif
No Records!
@endif
@endsection @push('js') @endpush