Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mostafa6765/0370da2d8cc6e6c88f913979d799edee to your computer and use it in GitHub Desktop.
Save mostafa6765/0370da2d8cc6e6c88f913979d799edee to your computer and use it in GitHub Desktop.
@extends('admin.layouts.app')
@section('title', 'login here')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Admin Login</div>
<div class="panel-body">
<form class="form-horizontal" method="POST" action="{{ route('admin.auth.loginAdmin') }}">
{{ csrf_field() }}
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
<label for="email" class="col-md-4 control-label">E-Mail Address</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control" name="email" value="{{ old('email') }}" required autofocus>
@if ($errors->has('email'))
<span class="help-block">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
<label for="password" class="col-md-4 control-label">Password</label>
<div class="col-md-6">
<input id="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>
<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>
<hr>
@component('admin.components.test')
@slot('kamal')
Forbidden kamal
@endslot
You are not allowed to access this resource!
@endcomponent
@foreach([1,2,3,4,5] as $item)
@foreach([6,7,8,9,10] as $item2)
@if ($loop->parent->first)
kamal
@endif
@endforeach
@endforeach
{{-- <a class="btn btn-link" href="{{ route('password.request') }}">
Forgot Your Password?
</a> --}}
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment