diff --git a/resources/views/settings/invites/home.blade.php b/resources/views/settings/invites/home.blade.php new file mode 100644 index 00000000..749391ea --- /dev/null +++ b/resources/views/settings/invites/home.blade.php @@ -0,0 +1,45 @@ +@extends('settings.template') + +@section('section') + +
+

Invites

+

Send email invites to your friends and family!

+
+
+ @if($invites->count() > 0) + + + + + + + + + + + @foreach($invites as $invite) + + + + + + + @endforeach + +
#EmailValid ForActions
{{$invite->id}}{{$invite->email}}{{$invite->message}} + @if($invite->used_at == null) + + @endif +
+ @else +
+
+

+

You haven't invited anyone yet.

+

Invite someone

+

You have {{$limit - $used}} invites left.

+
+
+ @endif +@endsection \ No newline at end of file