@extends('default')
@section('title')
Home
@endsection
@section('content')
@if (auth()->check())
Shorten your URL
@if ($errors->any())
{{ $errors->first() }}
@endif
@else
Welcome to slink URL Shortener
Sign Up or Log In to shorten your URLs
@endif
@endsection