14 lines
294 B
PHP
14 lines
294 B
PHP
@push('head')
|
|
<link rel="stylesheet" href="{{ mix("css/user.css") }}">
|
|
@endpush
|
|
|
|
@extends('layouts.app')
|
|
|
|
@section('title', "Sklep")
|
|
|
|
@section('main')
|
|
<p>
|
|
<b>Welcome, you are logged in as {{ $user->name }}</b>
|
|
<a href="{{route("logout")}}"> Logout </a>
|
|
</p>
|
|
@endsection()
|