@extends('layouts.master') @section('title','Show candidate') @section('breadcum') @endsection @section('maincontent')
@if($image = @file_get_contents('../public/media/users/'.$candidate->photo)) profilephoto @else profilephoto @endif @error('photo') {{ $message }} @enderror

@if(!empty($candidate->constituency_id)) @php $consties = App\Constituency::whereIn('id',$candidate->constituency_id)->get(); @endphp @foreach($consties as $c) {{ $c->name }} {{ !$loop->last ? "," : "" }} @endforeach @endif
@endsection