App Blade

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

@extends('layouts.

app')

@section('content')
<div class="modal">
<div class="row row-content-center">
<div class="col-xl">
<div class="card border-0">
<div class="card-body">
<div class="p-5">
<form class="form-group" method="POST"
action="{{ route('login') }}">
{{ csrf_field() }}
<div class="imgcontainer">
<img src="{{asset('image/logousl.png')}}" alt="USL"
class="avatar">
<div> Faculty Evaluation</div>
</div>

<div class="container">
<div class="form-group{{ $errors->has('username') ? ' has-
error' : '' }}">
<label for="username" class="col-md-4 control-
label">Username</label>

<input id="username" placeholder="Enter Username"


type="text" class="form-control" name="username" required>

@if ($errors->has('username'))
<span class="help-block">
<strong>{{ $errors-
>first('username') }}</strong>
</span>
@endif

</div>

<div class="form-group{{ $errors->has('password') ? ' has-


error' : '' }}">
<label for="password" class="col-md-4 control-
label">Password</label>

<input id="password" placeholder="Enter Password"


type="password" class="form-control" name="password" required>

@if ($errors->has('password'))
<span class="help-block">
<strong>{{ $errors-
>first('password') }}</strong>
</span>
@endif

</div>

<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<div class="checkbox">
<label>
<input type="checkbox" name="remember"
{{ old('remember') ? 'checked' : '' }}> Remember Me
</label>
</div>
</div>
</div>

<div class="form-group">
<div class="col-md-8 col-md-offset-4">
<button type="submit" class="btn btn-primary">
Login
</button>

</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection

You might also like