@extends('layouts.auth') @section('title', __('app.login') . ' - SEU CRM') @section('content')

{{ __('app.sign_in') }}

{{ __('app.welcome_message') }}

@csrf
@if(isset($errors) && $errors->has('username'))
{{ $errors->first('username') }}
@endif
@if(isset($errors) && $errors->has('password'))
{{ $errors->first('password') }}
@endif

{{ __('app.forgot_password') }} {{ __('app.reset_here') }}

@endsection