@extends('back.layout') @section('css') @endsection @section('main')
@if ($errors->count()) @component('back.components.alert') @slot('type') danger @endslot @lang('There is some validation issue...') @endcomponent @endif @if (session('ok')) @component('back.components.alert') @slot('type') success @endslot {!! session('ok') !!} @endcomponent @endif
@endsection @section('js') @endsection