@extends('layouts.app') @section('head') Login | DebloquerTelephone Dashboard @endsection @section('content')
@if (session('status'))
{{ session('status') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{ csrf_field() }}
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection