| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?php
return [
    'label' => 'Profile',
    'form' => [
        'email' => [
            'label' => 'Email address',
        ],
        'name' => [
            'label' => 'Name',
        ],
        'password' => [
            'label' => 'New password',
        ],
        'password_confirmation' => [
            'label' => 'Confirm new password',
        ],
        'actions' => [
            'save' => [
                'label' => 'Save changes',
            ],
        ],
    ],
    'notifications' => [
        'saved' => [
            'title' => 'Saved',
        ],
    ],
    'actions' => [
        'cancel' => [
            'label' => 'Cancel',
        ],
    ],
];
 |