@extends('layouts/contentLayoutMaster') @section('title', 'Edit Candidate Type') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') Candidate type {{ csrf_field() }} Candidate type Name @if($errors->has('type')) {{ $errors->first('type') }} @endif Description {{ $employeetype->type }} @if($errors->has('description')) {{ $errors->first('description') }} @endif Candidate Categories Select option @if ($candidate_categories) @foreach ($candidate_categories as $candidate_category) id == $employeetype->candidate_category_id ? 'selected' : '' }} value="{{$candidate_category->id}}">{{$candidate_category->name}} @endforeach @endif Status status == 'A' ? 'selected' : '' }} value="A">Active status == 'I' ? 'selected' : '' }} value="I">Deactive Save Changes Reset @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection
{{ $errors->first('type') }}
{{ $errors->first('description') }}