@extends('user.layout') @section('content')
@csrf
{{ __("Add_Social_Link") }}
{{ __("Back") }}

{{ __("Click_on_the_dropdown_icon_to_select_a_social_link_icon") }}

{{ __("Social_link_Serial_Number_text") }}

{{ __("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