@extends('admin.layout') @section('content')
Add Social Link
@csrf
@if ($errors->has('icon'))

{{$errors->first('icon')}}

@endif
NB: click on the dropdown icon to select a social link icon.
@if ($errors->has('url'))

{{$errors->first('url')}}

@endif

The higher the serial number is, the later the social link will be shown.

Social Links
@if (count($socials) == 0)

NO LINK ADDED

@else
@foreach ($socials as $key => $social) @endforeach
# Icon URL Serial Number Actions
{{$loop->iteration}} {{$social->url}} {{$social->serial_number}} Edit
@csrf
@endif
@endsection