@extends('layouts.app')
@section('title', $investor->exists ? 'Edit Investor' : 'Add Investor')
@section('content')
{{ $investor->exists ? 'Edit Investor' : 'Add Investor' }}
{{ $investor->exists ? $investor->name : 'Create a new investor profile' }}
@endsection