From ffaa349045ad1c9f569a443e49be981a96591aa1 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 28 May 2019 21:19:33 -0600 Subject: [PATCH] Add Circles view --- .../views/account/circles/create.blade.php | 93 +++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 resources/views/account/circles/create.blade.php diff --git a/resources/views/account/circles/create.blade.php b/resources/views/account/circles/create.blade.php new file mode 100644 index 00000000..06acc157 --- /dev/null +++ b/resources/views/account/circles/create.blade.php @@ -0,0 +1,93 @@ +@extends('layouts.app') + +@section('content') + +
+
+
+

Create Circle

+
+
+
+
+ @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +

Who can view posts from this circle

+
+
+
+
BCC Mode
+
+
+ + +
+

Send posts without mentioning other circle recipients.

+
+
+
+
+ +
+ +
+
+
+
+
+
+ + +
+
+
+
+ +
+
+
+
+
+
+
+ +@endsection + +@push('scripts') + +@endpush \ No newline at end of file