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

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

{{ __('Register') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('user_limit'))
  • {{ Session::get('user_limit') }}
@endif
@csrf

{{ __('Already have an account?') }}
{{ __('Login here') }}


@endsection @push('js') @endpush