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