PHP Classes

File: resources/views/livewire/auth/login.blade.php

Recommend this page to a friend!
  Classes of Ezhaym Najera M   Tec Medika PHP Doctor Apointment System   resources/views/livewire/auth/login.blade.php   Download  
File: resources/views/livewire/auth/login.blade.php
Role: Auxiliary script
Content typex: text/plain
Description: Auxiliary script
Class: Tec Medika PHP Doctor Apointment System
Manage the appointments of patient with doctors
Author: By
Last change:
Date: 1 year ago
Size: 1,281 bytes
 

Contents

Class file image Download
<form wire:submit.prevent="login" class="row mt-5">
    <div class="col col-6 mx-auto">
        <div class="row">
            <div class="col col-12 text-center">
                <h3>Bienvenido</h3>
            </div>
            <div class="col-12 mt-3">
                <label for="email" class="form-label">Email</label>
                <input type="text" wire:model="form.email" id="email" class="form-control" />
                @error('form.email') <span class="text-danger">{{ $message }}</span> @enderror
            </div>
            <div class="col-12 mt-3">
                <label for="pass" class="form-label">Contraseņa</label>
                <input type="password" wire:model="form.password" id="pass" class="form-control" />
                @error('form.password') <span class="text-danger">{{ $message }}</span> @enderror
            </div>
            <div class="col-12 mt-5 text-center">
                <button type="submit" class="btn btn-secondary">Ingresar</button>
            </div>
            <!-- ALERT -->
            @if(session('message'))
                <div class="col col-12 mt-3">
                    {!! session('message') !!}
                </div>
            @endif
            <!----------------->
        </div>
    </div>
</form>