Let $L=\{a^n:n\ge 2\}$; then $\min(L)=\{aa\}$, and $\max(L)=\varnothing$, so $\min(L)\ne\max(L)$.
One fairly easy way to prove that $\min(L)$ or $\max(L)$ is regular is to start with a DFA that recognizes $L$ and modify it to accept $\min(L)$ or $\max(L)$. Let $M=\langle Q,\Sigma,\delta,q_0,A\rangle$ be a DFA that accepts $L$; $Q$ is the set of states, $\Sigma$ is the input alphabet, $\delta$ is the transition function, $q_0$ is the initial state, and $A$ is the set of acceptor states. (You may know them as final states.) I’ll sketch the modifications and leave the detailed verification to you.
To get a DFA that accepts $\min(L)$, add a new trap state $q^*$ and modify $\delta$ so that any input to an acceptor state sends $M$ to $q^*$.
To get a DFA that accepts $\max(L)$, you need only change some acceptor states to non-acceptor states. Specifically, say that a state $q\in Q$ is non-terminal if there is some non-empty word $w$ that sends $M$ from $q$ to an acceptor state, and let $N$ be the set of non-terminal states of $M$. If $A'=A\setminus N$, the automaton $\langle Q,\Sigma,\delta,q_0,A'\rangle$ recognizes $\max(L)$.