@php
use Carbon\Carbon;
$title = __('user.index');
@endphp
@extends('layouts.app')
@section('title', $title)
@section('content')
@include('shared.fake-div')
@include('shared.title', [$title])
@include('shared.button', ['type' => 'add', 'url' => route('users.create'), 'label' => __('user.add')])
@endsection