我的分页laravel很奇怪(我不知道用英语告诉我的英语很糟糕)

so I recently learn how to use Laravel for my class project, and heres my problem when I create pagination the result in my project is < .1 > like that, the pagination is not styled and the pagination like the picture I upload, I have done everything I could do , I browse the internet too, and the result is null , thanks heres the picture of my problem

       $no = 1 {{-- buat nomor urut --}}
                )
            @if ($forms->count() > 0)
            @foreach ($forms as $angs)
<tr align="center">
    <td height="32">{{ $no++ }}<div align="center"></div></td>
    <td>{{ $angs->username }}<div align="center"></div></td>
    <td>{{ $angs->nama }}<div align="center"></div></td>
    <td>{{ $angs->nik}}<div align="center"></div></td>
    <td>{{ $angs->status_aktif}}<div align="center"></div></td>
    <td bgcolor="#EEF2F7"><div align="center"><a href="{{ URL('/detailPostAdmin')}}/{{ $angs->id }}">Detail</a> | <a href="">Edit</a> | <a href="">Hapus</a></div></td>

<tr align="center" bgcolor="#DFE6EF">
    <td>&nbsp;</td>
    <td>&nbsp;</td> 
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
</tr>
</tr>
@endforeach
 {{ $forms->links()}}

` this is my code in blade and this is my code in my controller

` $forms= login::paginate(3);

return view('crud.form.viewMember', compact('forms'));

`