@extends('layouts.app') @section('content')
@if(session()->has('message'))
× {{ session()->get('message') }}
@endif @if(session()->has('error'))
× {{ session()->get('error') }}
@endif

Edit Contributor

@foreach ($contributors as $contributor)
{{ csrf_field() }}
@if((empty($contributor->first_name)) && empty(old('first_name')))
@else
@endif
@if((empty($contributor->middle_name)) && empty(old('middle_name')))
@else
@endif
@if((empty($contributor->last_name)) && empty(old('last_name')))
@else
@endif
@if((empty($contributor->email)) && empty(old('email'))) @else @endif
@if((empty($contributor->stage_name)) && empty(old('stage_name')))
@else
@endif
@if((empty($contributor->birth_date)) && empty(old('DOB')))
@else
@endif
@if((empty($contributor->postcode)) && empty(old('postal_code')))
@else
@endif
@if((empty($contributor->phone_number)) && empty(old('phone_number')))
@else
@endif
@if((empty($contributor->contract_date)) && empty(old('contract_date')))
@else
@endif
@if((empty($contributor->address)) && empty(old('address')))
@else
@endif
@if($contributor->profile_image) @endif @if(!empty($contributor->profile_image)) @if(($contributor->profile_img_type) == 1) @endif @if(($contributor->profile_img_type) == 3) @endif @else @if(($contributor->profile_img_type) == 1) @endif @if(($contributor->profile_img_type) == 3) @endif @endif
@if($contributor->w9_form) @endif @if($contributor->w9_form) @else @endif
@if((empty($contributor->facebook_link)) && empty(old('facebook'))) @else @endif
@if((empty($contributor->twitter_link)) && empty(old('twitter'))) @else @endif
@if((empty($contributor->instagram_link)) && empty(old('instagram')))
@else
@endif
@if((empty($contributor->bio)) && empty(old('bio')))
@else
@endif
@endforeach