pai-sklep/resources/views/user.blade.php

15 lines
294 B
PHP
Raw Normal View History

2021-12-08 00:29:02 +01:00
@push('head')
<link rel="stylesheet" href="{{ mix("css/user.css") }}">
@endpush
2021-12-05 19:23:42 +01:00
@extends('layouts.app')
@section('title', "Sklep")
@section('main')
2021-09-05 02:22:17 +02:00
<p>
2021-12-05 19:23:42 +01:00
<b>Welcome, you are logged in as {{ $user->name }}</b>
2021-12-14 18:03:22 +01:00
<a href="{{route("logout")}}"> Logout </a>
2021-09-05 02:22:17 +02:00
</p>
2021-12-05 19:23:42 +01:00
@endsection()