@extends('admin.layouts.layouts')
@section('title', 'Employee Salary')
@section('page-css')
@endsection
@section('content')
{!! Form::open([
'route' => 'employee-salary.store',
'method' => 'POST',
'id' => 'create-form',
'enctype' => 'multipart/form-data',
'autocomplete' => 'off',
]) !!}
@csrf
{!! Form::close() !!}
@endsection
@section('page-js')
@endsection