Can I call Orchid's fields inside blade template? #2386
Answered
by
tabuna
itpmsoftware
asked this question in
Q&A
-
Hi, I'm trying to call a component (Input or Select) inside the blade template, I tried to call with , I'm a new developer using laravel and orchid, and I don't know if it's possible or not |
Beta Was this translation helpful? Give feedback.
Answered by
tabuna
Oct 1, 2022
Replies: 1 comment 1 reply
-
In the {!! \Orchid\Screen\Fields\Input::make('email')
->type('email')
->required()
->tabindex(1)
->autofocus()
->placeholder(__('Enter your email'))
!!} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
itpmsoftware
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the
blade
view, you can use it like this: