<?php
namespace App\View\Components\Form;
use Illuminate\View\Component;
class TextareaField extends Component
{
public $label, $name;
public function __construct($label, $name)
{
$this->name = $name;
$this->label = $label;
}
public function render()
{
return view('components.form.textarea-field');
}
}