@extends('frontend.bigbag.layouts.app') @push('css') @endpush @section('content')

{{ $info->name ?? __('Customer Login') }}

{{ __('Login') }}

{{ __('Welcome back! please login to your account.') }}

@if(session('error')) @endif
@csrf
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif

{{ __('Don\'t have an account?') }}
{{ __('Register here') }}


@endsection