| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Distilleries\Expendable\Http\Forms\Login; |
||
| 11 | public function buildForm() |
||
| 12 | { |
||
| 13 | $this->add('email', 'email', |
||
| 14 | [ |
||
| 15 | 'label' => trans('expendable::form.email'), |
||
| 16 | 'validation' => 'required,custom[email]', |
||
| 17 | 'attr' => [ |
||
| 18 | 'class' => 'placeholder-no-fix', |
||
| 19 | ], |
||
| 20 | |||
| 21 | ]) |
||
| 22 | ->add('send', 'submit', |
||
| 23 | [ |
||
| 24 | 'label' => trans('expendable::form.send'), |
||
| 25 | 'attr' => [ |
||
| 26 | 'class' =>'btn green-haze pull-right' |
||
| 27 | ], |
||
| 28 | ]); |
||
| 29 | } |
||
| 30 | } |