@extends('layouts.master') @section('content')
Back to Dashboard
Add Account Type
@csrf
@if(Session::has('success'))
{{ Session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
Account Types
@foreach($account_types as $type) @endforeach
Name Action
{{ $type->name }}
@endsection