diff --git a/resources/views/status/edit.blade.php b/resources/views/status/edit.blade.php new file mode 100644 index 000000000..ffb23cb37 --- /dev/null +++ b/resources/views/status/edit.blade.php @@ -0,0 +1,91 @@ +@extends('layouts.app') + +@section('content') + +
+
+ +
+
+ Edit Status + Back to post +
+
+ @csrf +
+ +
+ is_nsfw==true?'checked=""':''}} disabled=""> + +
+
+
+
+ + @foreach($status->media()->orderBy('order')->get() as $media) +
+
+ Media #{{$media->order}} +
+
+
+ @csrf + +
+ +
+
+
+ + +
+
+ + +
+
+
+

Last Updated: {{$media->updated_at->diffForHumans()}}

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