@extends('layouts.master') @section('title', 'Account Types - Prolex Law Firm') @section('content')
Back
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 Description Action
{{ $type->name }} {{ $type->description }}
@endsection