@extends('front.layout') @section('main')
@if (session('confirmation-success')) @component('front.components.alert') @slot('type') success @endslot {!! session('confirmation-success') !!} @endcomponent @endif @if (session('confirmation-danger')) @component('front.components.alert') @slot('type') error @endslot {!! session('confirmation-danger') !!} @endcomponent @endif

@lang('Login')

{{ csrf_field() }} @if ($errors->has('log')) @component('front.components.error') {{ $errors->first('log') }} @endcomponent @endif
@endsection