@extends('layouts.admin.login') @section('title','Login') @section('content')

Sign in to start your session

@php $cfo = []; if(Request::cookie('adminckrem')){ $cfo = json_decode(Request::cookie('adminckrem'), true); } @endphp
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop