{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

{{ __('Kullanıcılar') }}

@csrf @method('POST') @component('admin.components.input',[ 'label'=>__('Ad Soyad'), 'name'=>'name', 'value'=>old('name'), 'placeholder'=>__('Kullanıcı adı veya soyadı'), ]) @endcomponent
@component('admin.components.user_index',['users'=>$users]) @endcomponent
{{ $users->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection