This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Livewire; | |
use Livewire\Attributes\Url; | |
use Livewire\Component; | |
class Form extends Component | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Livewire; | |
use App\Models\Company; | |
use App\Models\Phone; | |
use Livewire\Attributes\Computed; | |
use Livewire\Component; | |
class Form extends Component |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Livewire; | |
use App\Models\Event; | |
use Carbon\Carbon; | |
use Illuminate\Support\Facades\Log; | |
use Illuminate\Support\Facades\Validator; | |
use Livewire\Attributes\Rule; | |
use Livewire\Component; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<section class="mt-10"> | |
<div class="mx-auto max-w-screen-xl px-4 lg:px-12"> | |
<!-- Start coding here --> | |
<div class="bg-white dark:bg-gray-800 relative shadow-md sm:rounded-lg overflow-hidden"> | |
<div class="flex items-center justify-between d p-4"> | |
<div class="flex"> | |
<div class="relative w-full"> | |
<div class="absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none"> | |
<svg aria-hidden="true" class="w-5 h-5 text-gray-500 dark:text-gray-400" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Livewire; | |
use App\Models\User; | |
use Livewire\Attributes\Rule; | |
use Livewire\Component; | |
use Livewire\WithFileUploads; | |
class RegisterForm extends Component |