@extends('provider.layout.app') @section('content')
@lang('provider.profile.profile') @lang('provider.profile.manage_documents') @lang('provider.profile.update_location')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ Auth::guard('provider')->user()->first_name }} {{ Auth::guard('provider')->user()->last_name }}

{{ strtoupper(Auth::guard('provider')->user()->status) }}

{{csrf_field()}}
@endsection