@extends('layouts.auth.login') @section('title', 'Login Account') @section('headers') @endsection @section('contents') @csrf Welcome! {{ Auth::user()->fname }} Choose the store you wish to log into! Select Store @if (isset($storeGroup)) @forelse ($storeGroup as $store) ({{ $store->code }}) {{ ucwords(strtolower($store->description)) }} @empty @endforelse @endif Go @endsection @section('scripts') @endsection