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

Edit Client

@csrf @method('PUT')
Enter a valid URL or use "#".
@if($client->logo) Current Client Logo @else Placeholder Logo @endif

Social Links

@csrf
@foreach ($client->socialLinks as $socialLink) @endforeach
Icon URL Actions
{{ $socialLink->url }}
@csrf @method('DELETE')

Upload Images

@csrf
Drop files here or click to upload.

Uploaded Images

@foreach($client->images as $image)
Client Image
@csrf @method('DELETE')
@endforeach
@endsection @section('scripts') @endsection