@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if($txtContent)
@php
$lines = explode("\n", $txtContent);
@endphp
@foreach($lines as $line)
@if (strpos($line, ':') !== false)
@php
list($key, $value) = explode(':', $line, 2);
@endphp
@endif
@endforeach
@endif