diff --git a/app/views/dashboard/component-edit.blade.php b/app/views/dashboard/component-edit.blade.php new file mode 100644 index 00000000..40dd345a --- /dev/null +++ b/app/views/dashboard/component-edit.blade.php @@ -0,0 +1,37 @@ +@extends('layout.dashboard') + +@section('content') +
+ {{ Lang::get('cachet.dashboard.components') }} +
+
+
+

Edit component

+ @if($savedComponent = Session::get('savedComponent')) +
+ @if($savedComponent->isValid()) + Awesome. Component updated. + @else + Whoops. Something went wrong with the component. {{ $savedComponent->getErrors() }} + @endif +
+ @endif + +
+
+
+ + +
+
+ + +
+
+ + + +
+
+
+@stop