@extends('layouts.app') @section('title', 'Admin Login') @section('content')
@csrf

Welcome to

Sign in to your account to continue

@if (Route::has('franchise')) {{ __('Click Here Franchise Login?') }} @endif
@if(config('config.login_with') == 'email') @if ($errors->has('email')) {{ $errors->first('email') }} @endif @else @if ($errors->has('username')) {{ $errors->first('username') }} @endif @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection