@extends('frame')
@section('title')
blikk :: {{ trans('auth.welcome') }}
@stop
@section('css')
@stop
@section('content')
@if ($errors->any())
@foreach ($errors->getMessages() as $err => $errtxt)
@if ($err == 'noauth')
{!! trans($errtxt[0]) !!}
@else
{{ trans('auth.reset_error') }}
@endif
@endforeach
@endif
@if (isset($message))
{{ $message }}
@endif
@stop