25 lines
495 B
Vue
25 lines
495 B
Vue
<template>
|
|
<div>
|
|
<!-- Validation Errors -->
|
|
<div class="row" v-if="errors.length > 0">
|
|
<div class="col-6 alert alert-danger">
|
|
<strong>{{ __('Whoops!') }}</strong>
|
|
{{ __('Something went wrong.') }}
|
|
|
|
<br /><br />
|
|
|
|
<!-- Error Listing -->
|
|
<ul style="margin-bottom: 0">
|
|
<li v-for="error in errors">{{ error }}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['errors'],
|
|
}
|
|
</script>
|