@extends('network.layouts.app')
@section('title', 'Accounts')
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
@if (empty($account))
@endif
@if (!empty($account))
@endif
@endsection