@extends('laravel-crm::layouts.portal') @section('content')

{{ ucfirst(__('laravel-crm::lang.login')) }}

@if ($errors->any())
    @foreach ($errors->all() as $message)
  • {{ $message }}
  • @endforeach
@endif
@csrf
@if(config('laravel-crm.portal.allow_registration', false))

{{ ucfirst(__('laravel-crm::lang.dont_have_account')) }} {{ ucfirst(__('laravel-crm::lang.register')) }}

@endif
@endsection