@extends('layouts.mainlayout')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if( !is_null($msg_success) )
{{ $msg_success ?? ''}}
@endif
@if( !is_null($msg_insert) )
{{ $msg_insert ?? ''}}
@endif
@if( Session::has('msg_success') )
{{ Session::get('msg_success') }}
@endif