@extends('dashboard.authBase') @section('content')
@if (isset($type) && $type == 'consultant')

{{ __('Consultant Login') }}

@else

@if (isset($type) && $type == 'client') {{ __('Client Login') }} @elseif(isset($type) && $type == 'consultant') {{ __('Consultant Login') }} @else {{ __('Admin Login') }} @endif

@endif
@csrf @if (session('msg'))
{{ session('msg') }}
@endif @if (isset($type) && $type == 'consultant')
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (isset($type) && $type == 'client') @elseif(isset($type) && $type == 'consultant') @else @endif
@endsection