@extends('layouts.cork') @section('title', $title) @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content')
@csrf @if($action == 'edit') @method('PUT') @endif
first_name)) value="{{ $contact->first_name }}" @else value="{{ old('first_name')}}" @endif> @error('first_name')
{{ $errors->first('first_name') }}
@enderror
last_name)) value="{{ $contact->last_name }}" @else value="{{ old('last_name')}}" @endif> @error('last_name')
{{ $errors->first('last_name') }}
@enderror
email)) value="{{ $contact->email }}" @else value="{{ old('email')}}" @endif> @error('email')
{{ $errors->first('email') }}
@enderror
@error('school_id')
{{ $errors->first('school_id') }}
@enderror
@error('position_id')
{{ $errors->first('position_id') }}
@enderror
@error('is_facilitator')
{{ $errors->first('is_facilitator') }}
@enderror
phone)) value="{{ $contact->phone }}" @else value="{{ old('phone') }}" @endif> @error('phone')
{{ $errors->first('phone') }}
@enderror
ext)) value="{{ $contact->ext }}" @else value="{{ old('ext') }}" @endif> @error('ext')
{{ $errors->first('ext') }}
@enderror
@endsection @section('page-js') @endsection