active.blade.php 701 B

12345678910111213141516171819
  1. @extends('auth.layouts')
  2. @section('title', trans('auth.active_account'))
  3. @section('content')
  4. @if(Session::get('errorMsg'))
  5. <div class="alert alert-danger">
  6. <span> {{Session::get('errorMsg')}} </span>
  7. </div>
  8. @endif
  9. @if(Session::get('successMsg'))
  10. <div class="alert alert-success">
  11. <span> {{Session::get('successMsg')}} </span>
  12. </div>
  13. @endif
  14. <form action="{{url(Request::getRequestUri())}}" method="post">
  15. <div class="form-group form-material pt-20" data-plugin="formMaterial">
  16. <button class="btn btn-lg btn-success" onclick="login()">{{trans('auth.login')}}</button>
  17. </div>
  18. </form>
  19. @endsection