@extends('user.layout') @section('content')
@csrf
{{ __('Add Social Link') }}
{{ __('Back') }}

{{ __('Click on the dropdown icon to select a social link icon.') }}

{{ __('The higher the serial number is, the later the social link will be shown.') }}

{{ __('Social Links') }}
@if (count($socialLinks) == 0)

{{ __('NO SOCIAL LINK FOUND !') }}

@else
@foreach ($socialLinks as $socialLink) @endforeach
{{ '#' }} {{ __('Icon') }} {{ __('URL') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $socialLink->url }} {{ $socialLink->serial_number }} {{ __('Edit') }}
@csrf
@endif
@endsection