@extends('user.layout') @section('content')
{{ __('Add_Social_Link') }}
@csrf
@if ($errors->has('icon'))

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

@endif
{{ __('Social_Icon_nb_text') }}
@if ($errors->has('url'))

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

@endif
@if ($errors->has('serial_number'))

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

@endif

{{ __('Social_link_Serial_Number_text') }}

{{ __('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 }}
@csrf
@endif
@endsection