{{-- Session Messages --}} @if(session()->has('message'))
{{ session('message') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif {{-- Add New Bitly Account Section --}}

Add New Bitly Account

{{-- Account Name with Icon --}}
@error('account_name') {{ $message }} @enderror
{{-- Username with Icon --}}
@error('username') {{ $message }} @enderror
{{-- Password with Icon --}}
@error('password') {{ $message }} @enderror
{{-- Link Limit with Icon --}}
@error('monthly_link_limit') {{ $message }} @enderror
{{-- Client ID with Icon --}}
@error('client_id') {{ $message }} @enderror
{{-- Client Secret with Icon --}}
@error('client_secret') {{ $message }} @enderror

Shorten URL

@error('selectedAccountIds')
{{ $message }}
@enderror
@error('longUrl')
{{ $message }}
@enderror
@if(!empty($this->shortenedLinks))
@endif
{{-- Short Links Display Section --}}

Shortened Links

@foreach($shortLinks as $link) @endforeach
Username Original Link Shortened Link
{{ $link->bitlyAccount->username }} {{ $link->original_link }} {{ $link->shortened_link }}