@extends('layouts.admin') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Get Salary Information
{{ csrf_field() }}
@if($salaryData)
Salary Information
@component('components.salary-data', [ 'gotValidData' => $gotValidData, 'salaryData' => $salaryData ]) @endcomponent
@endif
@endsection @section('page-js') @endsection