Skip to content

Commit e0eace9

Browse files
committed
Fix typo in views path
1 parent d133555 commit e0eace9

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Changelog
22

33
All notable changes to accessible-forms will be documented in this file.
4+
5+
## 0.1.0 (2025-12-12)
6+
7+
Initial release

config/form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
| See http://symfony.com/doc/current/form/form_customization.html
2424
*/
2525
'template_directories' => [
26-
__DIR__ . '/../vendor/studio24/accessible-forms/src/Resources/views/form'
26+
__DIR__ . '/../vendor/studio24/accessible-forms/src/Resources/views/Form'
2727
],
2828

2929
'defaults' => [

docs/laravel.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Add the service provider to `bootstrap/providers.php`
1313

1414
```php
1515
return [
16-
Studio24\AccessibleForms\Laravel\ServiceProvider::class,
1716
Barryvdh\Form\ServiceProvider::class,
1817
];
1918
```
@@ -30,6 +29,13 @@ return [
3029
];
3130
```
3231

32+
Copy config:
33+
34+
```shell
35+
cp vendor/studio24/accessible-forms/config/form.php config/form.php
36+
php artisan cache:clear
37+
```
38+
3339
## Usage
3440

3541
Create a form class:

0 commit comments

Comments
 (0)