@extends('layouts.app2') @section('content')
@if ($errors->has('success_msg'))
× {{ $errors->first('success_msg') }}
@endif @if ($errors->has('error_msg'))
× {{ $errors->first('error_msg') }}
@endif
@if($data_create==1)
{{ csrf_field() }}
ADD DESIGNATION
@if ($errors->has('designation_name')) {{ $errors->first('designation_name') }} @endif
@if ($errors->has('level_code')) {{ $errors->first('level_code') }} @endif
@if ($errors->has('salary')) {{ $errors->first('salary') }} @endif
@if ($errors->has('incremented_salary')) {{ $errors->first('incremented_salary') }} @endif
@if ($errors->has('program_code')) {{ $errors->first('program_code') }} @endif
@else
No Designation Found.
@endif
@endsection