diff --git a/resources/css/app.css b/resources/css/app.css index 2a2769d..393dac7 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -126,8 +126,8 @@ @layer components { } .form-class { - @apply flex flex-col gap-4; - @apply mb-10; + @apply flex flex-col gap-4 p-3; + @apply mb-10 w-1/5; } .form-input-class { @@ -135,7 +135,7 @@ @layer components { } .form-button-class { - @apply bg-blue-500 text-white rounded-md p-2 cursor-pointer hover:bg-blue-800; + @apply bg-blue-500 text-white rounded-md p-2 cursor-pointer hover:bg-blue-800 w-1/2; } .container h1 { diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php index 8ad8c05..5db54be 100644 --- a/resources/views/login.blade.php +++ b/resources/views/login.blade.php @@ -2,31 +2,36 @@ @section('title', 'Login') @section('content') -
-
+
+
+
+ +

Efetue seu login

+ + @if ($errors->any()) +
+ {{ $errors->first() }} +
+ @endif + + @if (session('error')) +
+ {{ session('error') }} +
+ + @endif + +
+ @csrf + + +
+ +
+
+
- -

Efetue seu login

- - @if ($errors->any()) -
- {{ $errors->first() }} -
- @endif - - @if (session('error')) -
- {{ session('error') }} -
- - @endif - -
- @csrf - - - -
-
@endsection \ No newline at end of file